Searched defs:service (Results 26 - 50 of 144) sorted by relevance

123456

/packages/apps/Email/emailcommon/src/com/android/emailcommon/service/
H A DSyncWindow.java17 package com.android.emailcommon.service;
H A DAccountServiceProxy.java17 package com.android.emailcommon.service;
H A DHostAuthCompat.java1 package com.android.emailcommon.service;
H A DPolicyServiceProxy.java17 package com.android.emailcommon.service;
/packages/apps/Email/src/com/android/email/service/
H A DImapTempFileLiteral.java17 package com.android.email.service;
H A DPolicyService.java17 package com.android.email.service;
27 import com.android.emailcommon.service.IPolicyService;
89 // When we bind this service, save the context and SecurityPolicy singleton
H A DEasTestAuthenticatorService.java17 package com.android.email.service;
33 * Anauthenticator service for reconciliation tests; it simply adds the account to AccountManager
/packages/apps/Email/tests/src/com/android/email/service/
H A DEmailBroadcastProcessorServiceTests.java17 package com.android.email.service;
37 * runtest -c com.android.email.service.EmailBroadcastProcessorServiceTests email
/packages/apps/OMA-DM/DMService/src/com/android/omadm/service/
H A DFotaNotifyContext.java17 package com.android.omadm.service;
H A DDMSettingsHelper.java17 package com.android.omadm.service;
21 public static final String AUTHORITY = "com.android.omadm.service";
/packages/experimental/RpcPerformance/
H A Drpcperftest.cpp42 fprintf(stderr, "usage: rpcperftest service-to-test | :service-to-serve\n");
48 fprintf(stderr, "error: can't get default service manager\n");
56 fprintf(stderr, "error: can't register service: %s\n", argv[1] + 1);
62 fprintf(stderr, "error: can't run service\n");
66 sp<IBinder> service = sm->checkService(String16(argv[1])); local
67 if (service == NULL) {
68 fprintf(stderr, "error: can't find service: %s\n", argv[1]);
73 status_t status = service->pingBinder();
83 status_t status = service
[all...]
/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/
H A DDictionaryPackInstallBroadcastReceiver.java58 public DictionaryPackInstallBroadcastReceiver(final LatinIME service) { argument
59 mService = service;
70 Log.e(TAG, "Called with intent " + action + " but we don't know the service: this "
102 Log.e(TAG, "Called with intent " + action + " but we don't know the service: this "
118 Log.e(TAG, "Called with intent " + action + " but we don't know the service: this "
125 // Careful! This is returning if the service is NOT null. This is because we
129 + "service: this should never happen");
/packages/services/Mms/src/com/android/mms/service/http/
H A DNetworkAwareThreadSafeClientConnManager.java17 package com.android.mms.service.http;
/packages/services/Telecomm/src/com/android/server/telecom/
H A DConnectionServiceRepository.java40 ConnectionServiceWrapper service = mServiceCache.get(componentName);
41 if (service == null) {
42 service = new ConnectionServiceWrapper(
47 service.addListener(this);
48 mServiceCache.put(componentName, service);
50 return service;
54 * Removes the specified service from the cache when the service unbinds.
59 public void onUnbind(ConnectionServiceWrapper service) { argument
60 mServiceCache.remove(service
[all...]
/packages/apps/Exchange/src/com/android/exchange/service/
H A DPingSyncSynchronizer.java17 package com.android.exchange.service;
271 * it will not be here. This allows to use emptiness of this map to know whether the service
279 public PingSyncSynchronizer(final Service service) { argument
282 mService = service;
306 LogUtils.i(TAG, "PSS added first account, starting service");
314 * Remove an account from the map. If this was the last account, then also stop this service.
323 LogUtils.i(TAG, "PSS removed last account; stopping service.");
400 * Stops our service if our map contains no active accounts.
407 LogUtils.i(TAG, "PSS has no active accounts; stopping service.");
H A DCalendarSyncAdapterService.java17 package com.android.exchange.service;
34 import com.android.emailcommon.service.EmailServiceStatus;
78 // The service didn't connect, nothing we can do.
H A DPingTask.java17 package com.android.exchange.service;
/packages/apps/ContactsCommon/src/com/android/contacts/common/testing/
H A DInjectedServices.java30 * with this class to see if a particular service has been overridden.
58 public void setSystemService(String name, Object service) { argument
63 mSystemServices.put(name, service);
/packages/apps/Mms/src/com/android/mms/transaction/
H A DSmsReceiver.java68 * Start the service to process the current event notifications, acquiring
69 * the wake lock before returning to ensure that the service will run.
86 * Called back by the service when it has finished processing notifications,
87 * releasing the wake lock if the service is now stopping.
89 public static void finishStartingService(Service service, int startId) { argument
92 if (service.stopSelfResult(startId)) {
/packages/apps/OMA-DM/plugins/testplugin/src/com/android/example/testplugin/
H A DGetDMTreeActivity.java39 // Binder interface to client service
50 public void onServiceConnected(ComponentName name, IBinder service) { argument
51 Log.d(TAG, "onServiceConnected for " + name + " service " + service);
52 mDMClientService = IDMClientService.Stub.asInterface(service);
112 // bind to the OMA DM client service
114 intent.setClassName("com.android.omadm.service", "com.android.omadm.service.DMClientService");
121 // unbind the OMA DM client service
H A DStartClientSessionActivity.java34 // Binder interface to client service
50 public void onServiceConnected(ComponentName name, IBinder service) { argument
51 Log.d(TAG, "onServiceConnected for " + name + " service " + service);
52 mDMClientService = IDMClientService.Stub.asInterface(service);
86 // bind to the OMA DM client service
88 intent.setClassName("com.android.omadm.service", "com.android.omadm.service.DMClientService");
95 // unbind the OMA DM client service
/packages/apps/Settings/src/com/android/settings/bluetooth/
H A DDockEventReceiver.java121 * Start the service to process the current event notifications, acquiring
122 * the wake lock before returning to ensure that the service will run.
141 * Called back by the service when it has finished processing notifications,
142 * releasing the wake lock if the service is now stopping.
144 public static void finishStartingService(Service service, int startId) { argument
148 if (service.stopSelfResult(startId)) {
149 Log.d(TAG, "finishStartingService: stopping service");
/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/spellcheck/
H A DAndroidSpellCheckerSession.java40 public AndroidSpellCheckerSession(AndroidSpellCheckerService service) { argument
41 super(service);
42 mResources = service.getResources();
/packages/services/Mms/src/com/android/mms/service/
H A DMmsConfigManager.java17 package com.android.mms.service;
/packages/apps/Dialer/src/com/android/dialer/service/
H A DCachedNumberLookupService.java1 package com.android.dialer.service;
21 * Perform a lookup using the cached number lookup service to return contact

Completed in 566 milliseconds

123456