HomeSort by relevance Sort by last modified time
    Searched defs:services (Results 201 - 225 of 494) sorted by null

1 2 3 4 5 6 7 891011>>

  /system/libhwbinder/vts/performance/
Latency.cpp 60 static vector<sp<IScheduleTest> > services; variable
119 sp<IScheduleTest> service = services[target];
193 services.push_back(service);
212 sp<IScheduleTest> service = services[target];
339 // Create services.
343 // Wait until all services are up.
Benchmark_throughput.cpp 206 // Get references to test services.
310 // Num of services.
311 int services = -1; local
337 services = atoi(argv[i + 1]);
343 if (services == -1) {
344 services = workers;
347 // Create services.
349 for (int i = 0; i < services; i++) {
354 // Wait until all services are up.
361 worker_pipes.push_back(make_worker(i, iterations, services, get_stub))
    [all...]
  /external/guava/guava-tests/test/com/google/common/util/concurrent/
ServiceManagerTest.java 306 * fails and something failed during startup before service.start was called on all the services,
323 ServiceManager manager, Service.State state, Service... services) {
325 for (Service service : services) {
357 assertEquals("ServiceManager{services=[]}", manager.toString());
411 // now we want to stop the services.
516 List<Service> services = Lists.newArrayList(); local
518 services.add(new SnappyShutdownService(i));
520 ServiceManager manager = new ServiceManager(services);
  /frameworks/base/core/java/android/content/pm/
RegisteredServicesCache.java 69 * Cache of registered services. This cache is lazily built by interrogating
75 * The services are referred to by type V and are made available via the
100 Map<V, ServiceInfo<V>> services = null; field in class:RegisteredServicesCache.UserServices
114 UserServices<V> services = mUserServices.get(userId); local
115 if (services == null) {
116 services = new UserServices<V>();
117 mUserServices.put(userId, services);
133 Log.w(TAG, "Error reading persistent services for user " + user.id, e);
141 return services;
178 // Don't regenerate the services map when the package is removed or it
    [all...]
PackageInfo.java 172 public ServiceInfo[] services; field in class:PackageInfo
443 dest.writeTypedArray(services, parcelableFlags | Parcelable.PARCELABLE_ELIDE_DUPLICATES);
505 services = source.createTypedArray(ServiceInfo.CREATOR);
537 propagateApplicationInfo(applicationInfo, services);
  /packages/apps/Nfc/src/com/android/nfc/cardemulation/
RegisteredNfcFServicesCache.java 71 // mUserServices holds the card emulation services that are running for each user
79 void onNfcFServicesUpdated(int userId, final List<NfcFServiceInfo> services);
104 * All services that have registered
106 final HashMap<ComponentName, NfcFServiceInfo> services = field in class:RegisteredNfcFServicesCache.UserServices
181 void dump(ArrayList<NfcFServiceInfo> services) {
182 for (NfcFServiceInfo service : services) {
187 boolean containsServiceLocked(ArrayList<NfcFServiceInfo> services,
189 for (NfcFServiceInfo service : services) {
202 return userServices.services.get(componentName);
207 final ArrayList<NfcFServiceInfo> services = new ArrayList<NfcFServiceInfo>() local
    [all...]
AppChooserActivity.java 57 public static final String EXTRA_APDU_SERVICES = "services";
160 ArrayList<ApduServiceInfo> services = intent.getParcelableArrayListExtra(EXTRA_APDU_SERVICES); local
163 onCreate(savedInstanceState, category, services, failedComponent);
197 public ListAdapter(Context context, ArrayList<ApduServiceInfo> services) {
203 for (ApduServiceInfo service : services) {
  /packages/apps/Settings/src/com/android/settings/datausage/
BillingCycleSettings.java 84 services.mPolicyEditor = policyEditor;
121 final int cycleDay = services.mPolicyEditor.getPolicyCycleDay(mNetworkTemplate);
129 final long warningBytes = services.mPolicyEditor.getPolicyWarningBytes(mNetworkTemplate);
139 final long limitBytes = services.mPolicyEditor.getPolicyLimitBytes(mNetworkTemplate);
197 services.mPolicyEditor.setPolicyLimitBytes(mNetworkTemplate, limitBytes);
203 services.mPolicyEditor.setPolicyWarningBytes(mNetworkTemplate, warningBytes);
209 return services.mPolicyEditor;
411 final NetworkPolicy policy = parent.services.mPolicyEditor
  /cts/tests/tests/keystore/src/android/keystore/cts/
KeyGeneratorTest.java 88 Set<Service> services = provider.getServices(); local
92 for (Service service : services) {
KeyFactoryTest.java 76 Set<Service> services = provider.getServices(); local
80 for (Service service : services) {
SignatureTest.java 79 // services. Thus, our provider has to expose the "ECDSA" service whose actual proper
340 Set<Service> services = provider.getServices(); local
344 for (Service service : services) {
    [all...]
  /external/perfetto/src/ipc/
client_impl_unittest.cc 113 services.emplace(name, std::unique_ptr<FakeService>(new FakeService()));
143 auto svc_it = services.find(req.msg_bind_service().service_name());
144 ASSERT_NE(services.end(), svc_it);
162 for (const auto& svc : services) {
192 std::map<std::string, std::unique_ptr<FakeService>> services; member in class:perfetto::ipc::__anon31997::FakeHost
453 // Bind the services (in opposite order of creation) before running any task.
  /libcore/luni/src/test/java/libcore/java/security/
MessageDigestTest.java 76 Set<Provider.Service> services = provider.getServices(); local
77 for (Provider.Service service : services) {
ProviderTest.java 107 Set<Provider.Service> services = provider.getServices(); local
108 assertNotNull(services);
109 assertFalse(services.isEmpty());
111 Set<Provider.Service> originalServices = services;
112 services = new TreeSet<Provider.Service>(
122 services.addAll(originalServices);
125 for (Provider.Service service : services) {
301 * Helper function to fetch services for Service.Algorithm IDs
431 Set<Provider.Service> services = provider.getServices(); local
432 assertNotNull(services);
1168 HashMap<String, String> services = new HashMap<String, String>(); local
    [all...]
KeyPairGeneratorTest.java 148 Set<Provider.Service> services = provider.getServices(); local
149 for (Provider.Service service : services) {
332 Set<Provider.Service> services = p.getServices(); local
333 for (Provider.Service service : services) {
  /packages/apps/Contacts/tests/src/com/android/contacts/model/
ContactLoaderTest.java 68 InjectedServices services = new InjectedServices(); local
  /packages/services/BuiltInPrintService/src/com/android/bips/
LocalDiscoverySession.java 58 /** Package names of all currently enabled print services beside this one */
62 * Address of printers that can be handled by print services, ordered by package name of the
323 ArrayList<String> services = mPrintersOfOtherService.get(address); local
325 if (services == null) {
326 services = new ArrayList<>(1);
327 mPrintersOfOtherService.put(address, services);
330 services.add(packageName);
  /packages/services/Telephony/sip/src/com/android/services/telephony/sip/
SipSettings.java 17 package com.android.services.telephony.sip;
  /packages/services/Telephony/src/com/android/services/telephony/
CdmaConnection.java 17 package com.android.services.telephony;
  /system/bt/bta/gatt/
bta_gattc_cache.cc 152 std::vector<tBTA_GATTC_SERVICE>& services, uint16_t handle) {
153 for (tBTA_GATTC_SERVICE& service : services) {
329 /* start discovering included services */
337 LOG(INFO) << __func__ << ": no more services found";
374 static bool bta_gattc_srvc_in_list(std::vector<tBTA_GATTC_SERVICE>& services,
382 for (tBTA_GATTC_SERVICE& service : services) {
430 /* discover services result, add services into a service list */
508 /* discover services result, add services into a service list *
648 std::vector<tBTA_GATTC_SERVICE>* services = local
656 std::vector<tBTA_GATTC_SERVICE>* services = bta_gattc_get_services(conn_id); local
    [all...]
  /external/guava/guava/src/com/google/common/util/concurrent/
ServiceManager.java 74 * A manager for monitoring and controlling a set of {@linkplain Service services}. This class
76 * {@linkplain #servicesByState inspecting} a collection of {@linkplain Service services}.
82 * services are started by some mechanism besides {@link #startAsync}, the listeners will be invoked
89 * Set<Service> services = ...;
90 * ServiceManager manager = new ServiceManager(services);
94 * // Services have been initialized and are healthy, start accepting requests...
106 * // Give the services 5 seconds to stop to ensure that we are responsive to shutdown
115 * manager.startAsync(); // start all the services asynchronously
119 * <p>This class uses the ServiceManager's methods to start all of its services, to respond to
120 * service failure and to ensure that when the JVM is shutting down all the services are stopped
182 private final ImmutableList<Service> services; field in class:ServiceManager
    [all...]
  /frameworks/base/packages/ExtServices/src/android/ext/services/notification/
Assistant.java 17 package android.ext.services.notification;
26 import android.ext.services.R;
  /frameworks/base/packages/SystemUI/src/com/android/systemui/qs/external/
TileServices.java 117 final ArrayList<TileServiceManager> services; local
119 services = new ArrayList<>(mServices.values());
121 final int N = services.size();
124 // Precalculate the priority of services for binding.
126 services.get(i).calculateBindPriority(currentTime);
129 Collections.sort(services, SERVICE_SORT);
134 services.get(i).setBindAllowed(true);
138 services.get(i).setBindAllowed(false);
  /libcore/luni/src/test/java/org/apache/harmony/security/tests/java/security/
ProviderTest.java 298 Set services = p.getServices(); local
299 assertEquals(3, services.size());
301 for (Iterator it = services.iterator(); it.hasNext();) {
418 Set<Provider.Service> services = myProvider.getServices(); local
419 assertEquals(0, services.size());
  /packages/apps/DocumentsUI/src/com/android/documentsui/services/
Job.java 17 package com.android.documentsui.services;
20 import static com.android.documentsui.services.FileOperationService.EXTRA_CANCEL;
21 import static com.android.documentsui.services.FileOperationService.EXTRA_DIALOG_TYPE;
22 import static com.android.documentsui.services.FileOperationService.EXTRA_FAILED_DOCS;
23 import static com.android.documentsui.services.FileOperationService.EXTRA_FAILED_URIS;
24 import static com.android.documentsui.services.FileOperationService.EXTRA_JOB_ID;
25 import static com.android.documentsui.services.FileOperationService.EXTRA_OPERATION_TYPE;
26 import static com.android.documentsui.services.FileOperationService.OPERATION_UNKNOWN;
54 import com.android.documentsui.services.FileOperationService.OpType;

Completed in 641 milliseconds

1 2 3 4 5 6 7 891011>>