Searched defs:service (Results 1 - 25 of 92) sorted by path

1234

/packages/apps/Bluetooth/jni/
H A Dcom_android_bluetooth_hfp.cpp465 jint service, jint num_active, jint num_held, jint call_state,
470 if ( (status = sBluetoothHfpInterface->cind_response(service, num_active, num_held,
464 cindResponseNative(JNIEnv *env, jobject object, jint service, jint num_active, jint num_held, jint call_state, jint signal, jint roam, jint battery_charge) argument
/packages/apps/Bluetooth/src/com/android/bluetooth/btservice/
H A DAdapterProperties.java65 public AdapterProperties(AdapterService service) { argument
66 mService = service;
H A DAdapterState.java85 private AdapterState(AdapterService service, AdapterProperties adapterProperties) { argument
90 mAdapterService = service;
95 public static AdapterState make(AdapterService service, AdapterProperties adapterProperties) { argument
97 AdapterState as = new AdapterState(service, adapterProperties);
133 //TODO: Handle case of service started and stopped without enable
H A DBondStateMachine.java67 private BondStateMachine(AdapterService service, argument
73 mAdapterService = service;
79 public static BondStateMachine make(AdapterService service, argument
82 BondStateMachine bsm = new BondStateMachine(service, prop, remoteDevices);
H A DRemoteDevices.java53 RemoteDevices(AdapterService service) { argument
55 mAdapterService = service;
/packages/apps/Bluetooth/src/com/android/bluetooth/hdp/
H A DHealthService.java53 * Provides Bluetooth Health Device profile, as a service in
286 public BluetoothHealthDeathRecipient(HealthService service, BluetoothHealthAppConfiguration config) { argument
287 mService = service;
303 * Handlers for incoming service calls
331 HealthService service = getService();
332 if (service == null) return false;
333 return service.registerAppConfiguration(config, callback);
337 HealthService service = getService();
338 if (service == null) return false;
339 return service
[all...]
/packages/apps/Bluetooth/src/com/android/bluetooth/hfp/
H A DHeadsetPhoneState.java37 // HFP 1.6 CIND service
277 HeadsetDeviceState(int service, int roam, int signal, int batteryCharge) { argument
278 mService = service;
H A DHeadsetStateMachine.java222 if (DBG) Log.d(TAG,"Unbinding service...");
1024 public void onServiceConnected(ComponentName className, IBinder service) {
1026 mPhoneProxy = IBluetoothHeadsetPhone.Stub.asInterface(service);
2050 private native boolean cindResponseNative(int service, int numActive, int numHeld, argument
/packages/apps/Calendar/src/com/android/calendar/alerts/
H A DAlertReceiver.java129 * Start the service to process the current event notifications, acquiring
130 * the wake lock before returning to ensure that the service will run.
147 * Called back by the service when it has finished processing notifications,
148 * releasing the wake lock if the service is now stopping.
150 public static void finishStartingService(Service service, int startId) { argument
153 if (service.stopSelfResult(startId)) {
/packages/apps/Contacts/src/com/android/contacts/test/
H A DInjectedServices.java30 * with this class to see if a particular service has been overridden.
57 public void setSystemService(String name, Object service) { argument
62 mSystemServices.put(name, service);
/packages/apps/Contacts/src/com/android/contacts/vcard/
H A DExportProcessor.java59 public ExportProcessor(VCardService service, ExportRequest exportRequest, int jobId) { argument
60 mService = service;
61 mResolver = service.getContentResolver();
H A DImportProcessor.java67 public ImportProcessor(final VCardService service, final VCardImportExportListener listener, argument
69 mService = service;
/packages/apps/Email/emailcommon/src/com/android/emailcommon/service/
H A DAccountServiceProxy.java17 package com.android.emailcommon.service;
H A DEmailServiceConstants.java17 package com.android.emailcommon.service;
H A DEmailServiceProxy.java17 package com.android.emailcommon.service;
37 * EmailService classes (e.g. ExchangeService for EAS). It wraps the service connect/disconnect
53 // Private intent that will be used to connect to an independent Exchange service
130 * Request an attachment to be loaded; the service MUST give higher priority to
131 * non-background loading. The service MUST use the loadAttachmentStatus callback when
163 * Request the sync of a mailbox; the service MUST send the syncMailboxStatus callback
182 * Request the immediate termination of a mailbox sync. Although the service is not required to
184 * the sync was started via the startSync service call.
235 * success) include a HostAuth record sufficient to enable the service to validate the user's
264 * Request that the service reloa
[all...]
H A DEmailServiceStatus.java18 package com.android.emailcommon.service;
21 * Definitions of service status codes returned to IEmailServiceCallback's status method
H A DLegacyPolicySet.java16 package com.android.emailcommon.service;
H A DPolicyServiceProxy.java17 package com.android.emailcommon.service;
H A DSearchParams.java17 package com.android.emailcommon.service;
H A DServiceProxy.java18 package com.android.emailcommon.service;
31 * EmailService classes (e.g. ExchangeService for EAS). It wraps the service connect/disconnect
121 // This can happen if the user ended the activity that was using the service
186 * Connection test; return indicates whether the remote service can be connected to
187 * @return the result of trying to connect to the remote service
H A DServiceUnavailableException.java17 package com.android.emailcommon.service;
20 * An Exception thrown when a service proxy requires a result and there's a remote exception; this
H A DSyncWindow.java17 package com.android.emailcommon.service;
/packages/apps/Email/src/com/android/email/service/
H A DAccountService.java17 package com.android.email.service;
35 import com.android.emailcommon.service.IAccountService;
106 // Make sure the service is properly running (re: lifecycle)
H A DAttachmentDownloadService.java17 package com.android.email.service;
44 import com.android.emailcommon.service.EmailServiceProxy;
45 import com.android.emailcommon.service.EmailServiceStatus;
46 import com.android.emailcommon.service.IEmailServiceCallback;
152 * stalled, as determined by the timing of the most recent service callback
413 // If our service instance is gone, just leave
711 // TODO: We should have some more data-driven way of determining the service intent.
754 * Ask the service for the number of items in the download queue
758 AttachmentDownloadService service = sRunningService;
759 if (service !
[all...]
H A DEasAuthenticatorService.java17 package com.android.email.service;
38 * A very basic authenticator service for EAS. At the moment, it has no UI hooks. When called

Completed in 481 milliseconds

1234