Searched refs:service (Results 276 - 300 of 417) sorted by relevance

<<11121314151617

/frameworks/base/core/java/android/bluetooth/
H A DBluetoothA2dp.java122 if (VDBG) Log.d(TAG,"Unbinding service...");
135 if (VDBG) Log.d(TAG,"Binding service...");
147 * Bluetooth A2DP service.
237 if (mService == null) Log.w(TAG, "Proxy not attached to service");
278 if (mService == null) Log.w(TAG, "Proxy not attached to service");
295 if (mService == null) Log.w(TAG, "Proxy not attached to service");
312 if (mService == null) Log.w(TAG, "Proxy not attached to service");
330 if (mService == null) Log.w(TAG, "Proxy not attached to service");
364 if (mService == null) Log.w(TAG, "Proxy not attached to service");
392 if (mService == null) Log.w(TAG, "Proxy not attached to service");
[all...]
H A DBluetoothHealth.java105 if (VDBG) Log.d(TAG,"Unbinding service...");
118 if (VDBG) Log.d(TAG,"Binding service...");
187 Log.w(TAG, "Proxy not attached to service");
211 Log.w(TAG, "Proxy not attached to service");
240 Log.w(TAG, "Proxy not attached to service");
269 Log.w(TAG, "Proxy not attached to service");
298 Log.w(TAG, "Proxy not attached to service");
327 Log.w(TAG, "Proxy not attached to service");
357 Log.w(TAG, "Proxy not attached to service");
386 if (mService == null) Log.w(TAG, "Proxy not attached to service");
[all...]
H A DBluetoothMap.java60 if (VDBG) Log.d(TAG,"Unbinding service...");
73 if (VDBG) Log.d(TAG,"Binding service...");
124 * Close the connection to the backing service.
153 * Get the current state of the BluetoothMap service.
155 * object is currently not connected to the Map service.
164 Log.w(TAG, "Proxy not attached to service");
174 * the Map service.
183 Log.w(TAG, "Proxy not attached to service");
192 * currently connected to the Map service.
201 Log.w(TAG, "Proxy not attached to service");
[all...]
/frameworks/base/core/java/android/net/nsd/
H A DNsdManager.java43 * <p> The API currently supports DNS based service discovery and discovery is currently
44 * limited to a local network over Multicast DNS. DNS service discovery is described at
70 * | add service to list
78 * | remove service from list
83 * | Connect to a service
90 * Establish connection to service
97 * with service type "_http._tcp". A successful registration is notified with a callback to
102 * with a call to {@link #discoverServices}. A service found is notified with a callback
103 * to {@link DiscoveryListener#onServiceFound} and a service lost is notified on
112 * Applications can reserve for a service typ
232 NsdManager(Context context, INsdManager service) argument
[all...]
/frameworks/base/core/java/android/speech/
H A DSpeechRecognizer.java39 * This class provides access to the speech recognition service. This service allows access to the
116 /** The connection to the actual service */
122 /** Component to direct service intent to */
170 public void onServiceConnected(final ComponentName name, final IBinder service) { argument
172 mService = IRecognitionService.Stub.asInterface(service);
189 * Checks whether a speech recognition service is available on the system. If this method
221 * Use this version of the method to specify a specific service to direct this
224 * service.
227 * @param serviceComponent the {@link ComponentName} of a specific service t
[all...]
/frameworks/base/core/java/android/widget/
H A DToast.java115 INotificationManager service = getService();
121 service.enqueueToast(pkg, tn, mDuration);
/frameworks/base/media/java/android/media/audiopolicy/
H A DAudioPolicy.java297 IAudioService service = getService();
299 final int status = service.setFocusPropertiesForPolicy(behavior /*duckingBehavior*/,
/frameworks/base/packages/Keyguard/test/src/com/android/keyguard/test/
H A DKeyguardTestActivity.java95 public void onServiceConnected(ComponentName className, IBinder service) { argument
97 mService = IKeyguardService.Stub.asInterface(service);
115 // Log.v(TAG, "Remote service died trying to call onSystemReady");
151 Log.v(TAG, "Binding service...");
237 Log.e(TAG, "Remote service died");
292 Log.e(TAG, "Remote service died");
304 Log.e(TAG, "Remote service died");
/frameworks/base/policy/src/com/android/internal/policy/impl/keyguard/
H A DKeyguardServiceDelegate.java45 // the event something checks before the service is actually started.
130 public void onServiceConnected(ComponentName name, IBinder service) {
133 IKeyguardService.Stub.asInterface(service));
221 Slog.w(TAG, "onScreenTurnedOn(): no keyguard service!");
223 // invoke the listener's callback after the service actually connects.
/frameworks/base/services/accessibility/java/com/android/server/accessibility/
H A DAccessibilityInputFilter.java113 AccessibilityInputFilter(Context context, AccessibilityManagerService service) { argument
116 mAms = service;
298 // into the accessibility manager service similarly
/frameworks/base/services/core/java/com/android/server/
H A DBluetoothManagerService.java74 //Maximum msec to wait for service restart
576 Log.e(TAG, "Unable to unbind service with intent: " + psc.mIntent, e);
586 * and maintains the connection with that service.
651 public void onServiceConnected(ComponentName className, IBinder service) { argument
654 mService = service;
664 mProxies.getBroadcastItem(i).onServiceConnected(className, service);
694 Log.w(TAG, "Profile service for profile: " + mClassName
719 * Inform BluetoothAdapter instances that Adapter service is up
737 * Inform BluetoothAdapter instances that Adapter service is down
816 public void onServiceConnected(ComponentName className, IBinder service) { argument
[all...]
/frameworks/base/services/core/java/com/android/server/hdmi/
H A DHdmiCecMessageValidator.java65 public HdmiCecMessageValidator(HdmiControlService service) { argument
66 mService = service;
/frameworks/base/tests/OneMedia/src/com/android/onemedia/
H A DNotificationHelper.java46 public NotificationHelper(Service service, MediaSession session) { argument
47 mService = service;
/frameworks/base/core/java/android/hardware/location/
H A DGeofenceHardwareImpl.java157 public void setGpsHardwareGeofence(IGpsGeofenceHardware service) { argument
159 mGpsService = service;
161 } else if (service == null) {
163 Log.w(TAG, "GPS Geofence Hardware service seems to have crashed");
169 public void setFusedGeofenceHardware(IFusedGeofenceHardware service) { argument
171 mFusedService = service;
173 } else if(service == null) {
175 Log.w(TAG, "Fused Geofence Hardware service seems to have crashed");
/frameworks/base/services/core/java/com/android/server/notification/
H A DConditionProviders.java29 import android.service.notification.Condition;
30 import android.service.notification.ConditionProviderService;
31 import android.service.notification.IConditionListener;
32 import android.service.notification.IConditionProvider;
33 import android.service.notification.ZenModeConfig;
345 // ... and is associated with the in-process service
487 return info == null ? null : (IConditionProvider) info.service;
H A DNotificationManagerService.java19 import static android.service.notification.NotificationListenerService.HINT_HOST_DISABLE_EFFECTS;
20 import static android.service.notification.NotificationListenerService.TRIM_FULL;
21 import static android.service.notification.NotificationListenerService.TRIM_LIGHT;
70 import android.service.notification.Condition;
71 import android.service.notification.IConditionListener;
72 import android.service.notification.IConditionProvider;
73 import android.service.notification.INotificationListener;
74 import android.service.notification.IStatusBarNotificationHolder;
75 import android.service.notification.NotificationListenerService;
76 import android.service
[all...]
/frameworks/base/services/core/java/com/android/server/am/
H A DTaskRecord.java43 import android.service.voice.IVoiceInteractionSession;
168 TaskRecord(ActivityManagerService service, int _taskId, ActivityInfo info, Intent _intent, argument
170 mService = service;
183 TaskRecord(ActivityManagerService service, int _taskId, ActivityInfo info, Intent _intent, argument
185 mService = service;
213 TaskRecord(ActivityManagerService service, int _taskId, Intent _intent, Intent _affinityIntent, argument
222 mService = service;
/frameworks/base/services/core/java/com/android/server/job/
H A DJobSchedulerService.java111 /** List of controllers that will notify this service of updates to jobs. */
259 * Initializes the system service.
713 // named service properly requires the BIND_JOB_SERVICE permission
716 final ComponentName service = job.getService();
718 ServiceInfo si = pm.getServiceInfo(service, 0, UserHandle.getUserId(uid));
720 throw new IllegalArgumentException("No such service " + service);
724 " cannot schedule job in " + service.getPackageName());
727 throw new IllegalArgumentException("Scheduled service " + service
[all...]
/frameworks/av/media/libstagefright/
H A DMediaCodecList.cpp79 sp<IMediaPlayerService> service = local
81 if (service.get() != NULL) {
82 sRemoteList = service->getCodecList();
/frameworks/base/core/java/android/os/
H A DDebug.java1588 * Get a debugging dump of a system service by name.
1592 * @param name of the service to dump
1594 * @param args to pass to the service's dump method, may be null
1595 * @return true if the service was dumped successfully, false if
1596 * the service could not be found or had an error while dumping
1599 IBinder service = ServiceManager.getService(name);
1600 if (service == null) {
1601 Log.e(TAG, "Can't find service to dump: " + name);
1606 service.dump(fd, args);
1609 Log.e(TAG, "Can't dump service
[all...]
/frameworks/base/core/java/android/service/voice/
H A DVoiceInteractionSession.java17 package android.service.voice;
447 void doCreate(IVoiceInteractionManagerService service, IBinder token, Bundle args) { argument
448 mSystemService = service;
/frameworks/base/core/tests/coretests/src/android/os/storage/
H A DAsecTests.java130 IBinder service = ServiceManager.getService("mount");
131 if (service != null) {
132 return IMountService.Stub.asInterface(service);
134 Log.e(TAG, "Can't get mount service");
/frameworks/base/services/core/java/com/android/server/dreams/
H A DDreamManagerService.java46 import android.service.dreams.DreamManagerInternal;
47 import android.service.dreams.DreamService;
48 import android.service.dreams.IDreamManager;
269 + " permission on the dream service declaration.");
/frameworks/base/services/core/java/com/android/server/wm/
H A DSession.java69 public Session(WindowManagerService service, IWindowSessionCallback callback, argument
71 mService = service;
77 mLastReportedAnimatorScale = service.getCurrentAnimatorScale();
/frameworks/native/cmds/dumpstate/
H A Dutils.c403 /* redirect output to a service control socket */
404 void redirect_to_socket(FILE *redirect, const char *service) { argument
405 int s = android_get_control_socket(service);
407 fprintf(stderr, "android_get_control_socket(%s): %s\n", service, strerror(errno));

Completed in 2897 milliseconds

<<11121314151617