Searched refs:service (Results 76 - 100 of 1144) sorted by relevance

1234567891011>>

/frameworks/opt/net/lowpan/build/
H A Dlowpan-service.mk20 lowpan-service
23 lowpan-service \
/frameworks/base/core/java/android/bluetooth/
H A DBluetoothHeadset.java47 * {@link BluetoothAdapter#closeProfileProxy} to close the service connection.
338 if (VDBG) Log.d(TAG, "Unbinding service...");
344 if (VDBG) Log.d(TAG, "Binding service...");
399 * Close the connection to the backing service.
444 final IBluetoothHeadset service = mService;
445 if (service != null && isEnabled() && isValidDevice(device)) {
447 return service.connect(device);
453 if (service == null) Log.w(TAG, "Proxy not attached to service");
486 final IBluetoothHeadset service
[all...]
H A DBluetoothHidHost.java232 if (VDBG) Log.d(TAG, "Unbinding service...");
245 if (VDBG) Log.d(TAG, "Binding service...");
334 final IBluetoothHidHost service = mService;
335 if (service != null && isEnabled() && isValidDevice(device)) {
337 return service.connect(device);
343 if (service == null) Log.w(TAG, "Proxy not attached to service");
374 final IBluetoothHidHost service = mService;
375 if (service != null && isEnabled() && isValidDevice(device)) {
377 return service
[all...]
/frameworks/base/cmds/statsd/src/
H A Dmain.cpp47 sp<StatsService> service; member in struct:log_reader_thread_data
55 sp<LogReader> reader = new LogReader(data->service);
69 static status_t start_log_reader_thread(const sp<StatsService>& service) { argument
76 data->service = service;
110 // Create the service
111 sp<StatsService> service = new StatsService(looper); local
112 if (defaultServiceManager()->addService(String16("stats"), service) != 0) {
113 ALOGE("Failed to add service");
116 service
[all...]
/frameworks/base/core/java/android/os/
H A DSystemService.java34 * State of a known {@code init} service.
60 /** Request that the init daemon start a named service. */
65 /** Request that the init daemon stop a named service. */
70 /** Request that the init daemon restart a named service. */
76 * Return current state of given service.
78 public static State getState(String service) { argument
79 final String rawState = SystemProperties.get("init.svc." + service);
89 * Check if given service is {@link State#STOPPED}.
91 public static boolean isStopped(String service) { argument
92 return State.STOPPED.equals(getState(service));
98 isRunning(String service) argument
105 waitForState(String service, State state, long timeoutMillis) argument
[all...]
/frameworks/base/services/core/java/com/android/server/
H A DSystemServiceManager.java55 * Starts a service by class name.
57 * @return The service instance.
66 throw new RuntimeException("Failed to create service " + className
67 + ": service class not found, usually indicates that the caller should "
76 * Creates and starts a system service. The class must be a subclass of
80 * @return The service instance, never null.
81 * @throws RuntimeException if the service fails to start.
90 // Create the service.
93 + ": service must extend " + SystemService.class.getName());
95 final T service;
120 startService(@onNull final SystemService service) argument
313 warnIfTooLong(long duration, SystemService service, String operation) argument
[all...]
H A DSystemService.java34 * to initialize the system service.
35 * <li>{@link #onStart()} is called to get the service running. The service should
42 * is an opportunity to do special work, like acquiring optional service dependencies,
43 * waiting to see if SafeMode is enabled, or registering with a service that gets
95 * Initializes the system service.
135 * When this method returns, the service should be published.
140 * Called on each phase of the boot process. Phases before the service's start phase
182 * user (such as binding to a service running in the user).
203 * Publish the service s
208 publishBinderService(String name, IBinder service) argument
220 publishBinderService(String name, IBinder service, boolean allowIsolated) argument
234 publishBinderService(String name, IBinder service, boolean allowIsolated, int dumpPriority) argument
249 publishLocalService(Class<T> type, T service) argument
[all...]
/frameworks/base/core/java/android/app/
H A DIServiceConnection.aidl24 void connected(in ComponentName name, IBinder service, boolean dead);
/frameworks/base/core/java/android/service/autofill/
H A DISaveCallback.aidl17 package android.service.autofill;
/frameworks/base/core/java/android/service/dreams/
H A DIDreamService.aidl17 package android.service.dreams;
/frameworks/base/core/java/android/service/euicc/
H A DIGetEuiccInfoCallback.aidl17 package android.service.euicc;
/frameworks/base/core/java/android/service/oemlock/
H A DIOemLockService.aidl17 package android.service.oemlock;
/frameworks/base/core/java/android/service/quicksettings/
H A DIQSTileService.aidl16 package android.service.quicksettings;
/frameworks/base/core/java/android/service/textclassifier/
H A DITextClassificationCallback.aidl17 package android.service.textclassifier;
H A DITextLinksCallback.aidl17 package android.service.textclassifier;
H A DITextSelectionCallback.aidl17 package android.service.textclassifier;
/frameworks/base/core/java/android/service/vr/
H A DIVrListener.aidl17 package android.service.vr;
/frameworks/base/services/core/java/com/android/server/wm/
H A DStartingData.java28 protected StartingData(WindowManagerService service) { argument
29 mService = service;
/frameworks/base/telephony/java/com/android/internal/telephony/euicc/
H A DIDisableProfileCallback.aidl18 import android.service.euicc.EuiccProfileInfo;
H A DIGetAllProfilesCallback.aidl18 import android.service.euicc.EuiccProfileInfo;
H A DIGetProfileCallback.aidl18 import android.service.euicc.EuiccProfileInfo;
H A DISwitchToProfileCallback.aidl18 import android.service.euicc.EuiccProfileInfo;
/frameworks/base/tests/Assist/src/com/android/test/assist/
H A DAssistInteractionSessionService.java20 import android.service.voice.VoiceInteractionSession;
21 import android.service.voice.VoiceInteractionSessionService;
/frameworks/base/tests/VoiceInteraction/src/com/android/test/voiceinteraction/
H A DMainInteractionSessionService.java20 import android.service.voice.VoiceInteractionSession;
21 import android.service.voice.VoiceInteractionSessionService;
/frameworks/native/services/sensorservice/
H A DSensorEventAckReceiver.h30 explicit SensorEventAckReceiver(const sp<SensorService>& service) argument
31 : mService(service) {

Completed in 356 milliseconds

1234567891011>>