Searched defs:services (Results 1 - 12 of 12) sorted by relevance

/packages/apps/Settings/src/com/android/settings/print/
H A DSettingsUtils.java61 List<ComponentName> services) {
63 final int serviceCount = services.size();
65 ComponentName service = services.get(i);
60 writeEnabledPrintServices(Context context, List<ComponentName> services) argument
/packages/services/Telephony/common/src/com/android/services/telephony/common/
H A DMoreStrings.java17 package com.android.services.telephony.common;
H A DAudioMode.java17 package com.android.services.telephony.common;
H A DCallIdentification.java17 package com.android.services.telephony.common;
H A DCall.java17 package com.android.services.telephony.common;
/packages/apps/Contacts/src/com/android/contacts/
H A DContactsApplication.java53 * Overrides the system services with mocks for testing.
56 public static void injectServices(InjectedServices services) { argument
57 sInjectedServices = services;
/packages/apps/Nfc/src/com/android/nfc/cardemulation/
H A DRegisteredServicesCache.java61 // mUserServices holds the card emulation services that are running for each user
66 void onServicesUpdated(int userId, final List<ApduServiceInfo> services); argument
71 * All services that have registered
73 public final HashMap<ComponentName, ApduServiceInfo> services = field in class:RegisteredServicesCache.UserServices
78 UserServices services = mUserServices.get(userId);
79 if (services == null) {
80 services = new UserServices();
81 mUserServices.put(userId, services);
83 return services;
132 void dump(ArrayList<ApduServiceInfo> services) { argument
138 containsServiceLocked(ArrayList<ApduServiceInfo> services, ComponentName serviceName) argument
[all...]
H A DAppChooserActivity.java57 public static final String EXTRA_APDU_SERVICES = "services";
161 ArrayList<ApduServiceInfo> services = intent.getParcelableArrayListExtra(EXTRA_APDU_SERVICES);
164 onCreate(savedInstanceState, category, services, failedComponent);
198 public ListAdapter(Context context, ArrayList<ApduServiceInfo> services) { argument
204 for (ApduServiceInfo service : services) {
H A DHostEmulationManager.java165 if (resolveInfo == null || resolveInfo.services.size() == 0) {
184 for (ApduServiceInfo service : resolveInfo.services) {
192 // We have no default, and either one or more services.
198 launchResolver((ArrayList<ApduServiceInfo>)resolveInfo.services, null, category);
398 void launchResolver(ArrayList<ApduServiceInfo> services, ComponentName failedComponent, argument
402 intent.putParcelableArrayListExtra(AppChooserActivity.EXTRA_APDU_SERVICES, services);
517 if (resolveInfo.services.size() > 0) {
518 final ArrayList<ApduServiceInfo> services = new ArrayList<ApduServiceInfo>();
519 for (ApduServiceInfo service : resolveInfo.services) {
521 services
[all...]
H A DRegisteredAidCache.java36 // mAidServices is a tree that maps an AID to a list of handling services
42 // more services. It differs from mAidServices in the sense that it
44 // is authoritative for the current set of services and defaults.
53 List<ApduServiceInfo> services; field in class:RegisteredAidCache.AidResolveInfo
164 if (resolveInfo.services == null || resolveInfo.services.size() == 0) return false;
168 } else if (resolveInfo.services.size() == 1) {
169 return service.equals(resolveInfo.services.get(0).getComponent());
260 * Resolves an AID to a set of services that can handle it.
269 resolveInfo.services
376 generateAidTreeLocked(List<ApduServiceInfo> services) argument
397 generateAidCategoriesLocked(List<ApduServiceInfo> services) argument
487 onPaymentDefaultRemoved(int userId, List<ApduServiceInfo> services) argument
518 setDefaultIfNeededLocked(int userId, List<ApduServiceInfo> services) argument
541 checkDefaultsLocked(int userId, List<ApduServiceInfo> services) argument
567 onServicesUpdated(int userId, List<ApduServiceInfo> services) argument
[all...]
/packages/apps/ContactsCommon/src/com/android/contacts/common/vcard/
H A DNfcImportVCardActivity.java63 public ImportRequest doInBackground(VCardService... services) { argument
71 services[0].handleImportRequest(requests, NfcImportVCardActivity.this);
/packages/apps/Bluetooth/src/com/android/bluetooth/btservice/
H A DAdapterService.java213 //Check if all services are stopped if so, do cleanup
225 if (DBG) Log.d(TAG, "All profile services stopped...");
231 //Check if all services are started if so, update state
243 if (DBG) Log.d(TAG, "All profile services started.");
300 //Start profile services
302 //Startup all profile services
320 if (DBG) {debugLog("stopProfileServices(): No profiles services to stop or already stopped.");}
427 private void setProfileServiceState(Class[] services, int state) { argument
440 for (int i=0; i <services.length;i++) {
441 String serviceName = services[
[all...]

Completed in 668 milliseconds