Searched refs:service (Results 226 - 250 of 417) sorted by relevance

1234567891011>>

/frameworks/base/core/java/android/service/notification/
H A DConditionProviderService.java17 package android.service.notification;
33 * A service that provides conditions about boolean state.
34 * <p>To extend this class, you must declare the service in your manifest file with
38 * &lt;service android:name=".MyConditionProvider"
42 * &lt;action android:name="android.service.notification.ConditionProviderService" />
44 * &lt;/service></pre>
59 * The {@link Intent} that must be declared as handled by the service.
63 = "android.service.notification.ConditionProviderService";
102 Log.w(TAG, "Condition provider service not yet bound.");
/frameworks/base/services/core/java/com/android/server/
H A DTextServicesManagerService.java53 import android.service.textservice.SpellCheckerService;
225 Slog.w(TAG, "Skipping text service " + compName
234 Slog.w(TAG, "Skipping text service " + compName
278 // Permits current profile to use TSFM as long as the current text service is the system's
313 Intent service, ServiceConnection conn, int flags) {
314 if (service == null || conn == null) {
315 Slog.e(TAG, "--- bind failed: service = " + service + ", conn = " + conn);
318 return mContext.bindServiceAsUser(service, conn, flags,
348 Slog.w(TAG, "more than one spell checker service foun
312 bindCurrentSpellCheckerService( Intent service, ServiceConnection conn, int flags) argument
927 onServiceConnected(ComponentName name, IBinder service) argument
933 onServiceConnectedInnerLocked(ComponentName name, IBinder service) argument
[all...]
/frameworks/base/services/core/java/com/android/server/am/
H A DConnectionRecord.java26 * Description of a single binding to a service.
29 final AppBindRecord binding; // The application/service binding.
104 sb.append(binding.service.shortName);
/frameworks/base/services/core/java/com/android/server/trust/
H A DTrustAgentWrapper.java40 import android.service.trust.ITrustAgentService;
41 import android.service.trust.ITrustAgentServiceCallback;
64 * Time in uptime millis that we wait for the service connection, both when starting
65 * and when the service disconnects.
228 public void onServiceConnected(ComponentName name, IBinder service) {
231 mTrustAgentService = ITrustAgentService.Stub.asInterface(service);
298 * @see android.service.trust.TrustAgentService#onUnlockAttempt(boolean)
309 * @see android.service.trust.TrustAgentService#onDeviceLocked()
320 * @see android.service.trust.TrustAgentService#onDeviceUnlocked()
/frameworks/base/tests/FrameworkPerf/src/com/android/frameworkperf/
H A DFrameworkPerfActivity.java87 @Override public void onServiceConnected(ComponentName name, IBinder service) { argument
89 if (!(service instanceof Binder)) {
91 service.linkToDeath(this, 0);
94 mService = new Messenger(service);
97 // Whoops, service has disappeared... try starting again.
98 Log.w(TAG, "Test service died, starting again");
287 Log.w(TAG, "Failure communicating with service", e);
344 Log.w(TAG, "Test service aleady died when terminating");
/frameworks/base/tests/JobSchedulerTestApp/src/com/android/demo/jobSchedulerApp/service/
H A DTestJobService.java17 package com.android.demo.jobSchedulerApp.service;
44 * This service is invoked in response to Intents with action android.content.SyncAdapter, and
77 Log.e(TAG, "Error passing service object back to activity.");
/frameworks/base/tests/VoiceEnrollment/src/com/android/test/voiceenrollment/
H A DEnrollmentUtil.java27 import android.service.voice.AlwaysOnHotwordDetector;
/frameworks/opt/net/wifi/service/
H A DAndroid.mk122 LOCAL_MODULE := libwifi-service
141 LOCAL_MODULE := wifi-service
/frameworks/base/
H A DAndroid.mk208 core/java/android/service/carrier/ICarrierMessagingCallback.aidl \
209 core/java/android/service/carrier/ICarrierMessagingService.aidl \
210 core/java/android/service/notification/INotificationListener.aidl \
211 core/java/android/service/notification/IStatusBarNotificationHolder.aidl \
212 core/java/android/service/notification/IConditionListener.aidl \
213 core/java/android/service/notification/IConditionProvider.aidl \
226 core/java/android/service/dreams/IDreamManager.aidl \
227 core/java/android/service/dreams/IDreamService.aidl \
228 core/java/android/service/persistentdata/IPersistentDataBlockService.aidl \
229 core/java/android/service/fingerprin
[all...]
/frameworks/base/core/java/com/android/internal/widget/
H A DLockPatternUtils.java207 ILockSettings service = ILockSettings.Stub.asInterface(
209 mLockSettingsService = service;
633 IBinder service = ServiceManager.getService("mount");
634 if (service == null) {
635 Log.e(TAG, "Could not find the mount service to update the user info");
639 IMountService mountService = IMountService.Stub.asInterface(service);
761 final IBinder service = ServiceManager.getService("mount");
762 if (service == null) {
763 Log.e(TAG, "Could not find the mount service to update the encryption password");
770 IMountService mountService = IMountService.Stub.asInterface(service);
[all...]
/frameworks/base/services/core/java/com/android/server/content/
H A DSyncStorageEngine.java122 /** Enum value for a sync started for a service. */
204 return "service=" + target.service
227 final ComponentName service; field in class:SyncStorageEngine.EndPoint
234 public EndPoint(ComponentName service, int userId) { argument
235 this.service = service;
247 this.service = null;
265 return service.equals(spec.service);
[all...]
H A DSyncQueue.java88 mPackageManager.getServiceInfo(info.service, 0);
91 Log.w(TAG, "Missing sync service for authority " + op.target);
96 info.service, info.userId, op.reason, op.syncSource,
/frameworks/av/media/libmediaplayerservice/
H A DMediaRecorderClient.cpp304 MediaRecorderClient::MediaRecorderClient(const sp<MediaPlayerService>& service, pid_t pid) argument
309 mMediaPlayerService = service;
/frameworks/base/core/java/android/bluetooth/
H A DBluetoothA2dpSink.java135 if (VDBG) Log.d(TAG,"Unbinding service...");
148 if (VDBG) Log.d(TAG,"Binding service...");
160 * Bluetooth A2DP service.
250 if (mService == null) Log.w(TAG, "Proxy not attached to service");
291 if (mService == null) Log.w(TAG, "Proxy not attached to service");
308 if (mService == null) Log.w(TAG, "Proxy not attached to service");
325 if (mService == null) Log.w(TAG, "Proxy not attached to service");
343 if (mService == null) Log.w(TAG, "Proxy not attached to service");
369 if (mService == null) Log.w(TAG, "Proxy not attached to service");
399 public void onServiceConnected(ComponentName className, IBinder service) {
[all...]
H A DBluetoothAvrcpController.java76 if (VDBG) Log.d(TAG,"Unbinding service...");
89 if (VDBG) Log.d(TAG,"Binding service...");
102 * Bluetooth AVRCP service.
173 if (mService == null) Log.w(TAG, "Proxy not attached to service");
190 if (mService == null) Log.w(TAG, "Proxy not attached to service");
208 if (mService == null) Log.w(TAG, "Proxy not attached to service");
219 Log.e(TAG, "Error talking to BT service in sendPassThroughCmd()", e);
223 if (mService == null) Log.w(TAG, "Proxy not attached to service");
227 public void onServiceConnected(ComponentName className, IBinder service) {
229 mService = IBluetoothAvrcpController.Stub.asInterface(service);
[all...]
H A DBluetoothPan.java195 if (VDBG) Log.d(TAG,"Unbinding service...");
237 if (mPanService == null) Log.w(TAG, "Proxy not attached to service");
278 if (mPanService == null) Log.w(TAG, "Proxy not attached to service");
295 if (mPanService == null) Log.w(TAG, "Proxy not attached to service");
312 if (mPanService == null) Log.w(TAG, "Proxy not attached to service");
330 if (mPanService == null) Log.w(TAG, "Proxy not attached to service");
354 public void onServiceConnected(ComponentName className, IBinder service) {
356 mPanService = IBluetoothPan.Stub.asInterface(service);
H A DBluetoothPbap.java37 * BluetoothPbap service. Users of this object should call close() when they
39 * from the service.
42 * BluetoothPbap service. Use the ServiceListener interface to obtain a
91 * been connected to the BluetoothPbap service.
96 * connected to the BluetoothPbap service. Clients must wait for
98 * service.
104 * disconnected from the BluetoothPbap service. Clients must not
105 * make IPC calls on the BluetoothPbap service after this callback.
107 * the BluetoothPbap service, but may be called more often in future.
117 if (VDBG) Log.d(TAG,"Unbinding service
[all...]
/frameworks/base/core/java/android/hardware/hdmi/
H A DHdmiControlManager.java47 * <p>Send when the service has a message to display on screen for events
121 * No recording – unable to select required service. as suitable tuner, but the requested
170 /** Timer recording type for digital service source. */
172 /** Timer recording type for analogue service source. */
262 public HdmiControlManager(IHdmiControlService service) { argument
263 mService = service;
/frameworks/base/core/java/android/hardware/location/
H A DGeofenceHardware.java170 public GeofenceHardware(IGeofenceHardware service) { argument
171 mService = service;
/frameworks/base/core/java/android/os/
H A DDropBoxManager.java251 public DropBoxManager(IDropBoxManagerService service) { mService = service; } argument
H A DPowerManager.java378 public PowerManager(Context context, IPowerManager service, Handler handler) { argument
380 mService = service;
416 * Returns true if the twilight service should be used to adjust screen brightness
1041 * service is performing work on behalf of an application so that the
/frameworks/base/packages/WAPPushManager/tests/src/com/android/smspush/unitTests/
H A DClientTest.java149 Log.v(LOG_TAG, "service disconnected.");
152 public void onServiceConnected(ComponentName name, IBinder service) {
153 mWapPushMan = IWapPushManager.Stub.asInterface(service);
154 Log.v(LOG_TAG, "service connected.");
161 Log.v(LOG_TAG, "onStart bind WAPPushManager service "
165 Log.v(LOG_TAG, "bind service done.");
/frameworks/base/services/core/java/com/android/server/hdmi/
H A DHdmiCecLocalDevicePlayback.java45 HdmiCecLocalDevicePlayback(HdmiControlService service) { argument
46 super(service, HdmiDeviceInfo.DEVICE_PLAYBACK);
/frameworks/ml/bordeaux/service/
H A DAndroid.mk54 ## Building the whole Bordeaux service
/frameworks/native/libs/binder/
H A DIServiceManager.cpp140 ALOGI("Waiting for service %s...\n", String8(name).string());
155 virtual status_t addService(const String16& name, const sp<IBinder>& service, argument
161 data.writeStrongBinder(service);

Completed in 551 milliseconds

1234567891011>>