Searched refs:service (Results 151 - 175 of 417) sorted by relevance

1234567891011>>

/frameworks/base/libs/usb/src/com/android/future/usb/
H A DUsbManager.java69 private UsbManager(Context context, IUsbManager service) { argument
71 mService = service;
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/tv/
H A DTvStatusBar.java20 import android.service.notification.NotificationListenerService.RankingMap;
21 import android.service.notification.StatusBarNotification;
/frameworks/base/services/core/java/com/android/server/am/
H A DAppErrorDialog.java38 public AppErrorDialog(Context context, ActivityManagerService service, argument
44 mService = service;
H A DCompatModeDialog.java39 public CompatModeDialog(ActivityManagerService service, Context context, argument
47 mService = service;
H A DStrictModeViolationDialog.java42 public StrictModeViolationDialog(Context context, ActivityManagerService service, argument
48 mService = service;
/frameworks/base/services/core/java/com/android/server/wm/
H A DFakeWindowImpl.java39 public FakeWindowImpl(WindowManagerService service, argument
43 mService = service;
/frameworks/base/tests/utils/SleepUtils/SleepHelper/src/com/android/testing/sleephelper/
H A DSetAlarm.java54 errorFinish("service disconnected");
58 public void onServiceConnected(ComponentName name, IBinder service) {
60 mAlarmService = Alarm.Stub.asInterface(service);
110 // start the service with an intent, this ensures the service keeps running after unbind
113 errorFinish("failed to start service");
116 errorFinish("failed to bind service");
138 // explicitly stop the service (started in prepare()) so that the service is now free
/frameworks/ml/bordeaux/service/src/android/bordeaux/services/
H A DBordeauxManagerService.java37 * service.
38 * TODO: Eventally the remote service will be running in the system server, and
39 * this will need to be served as a stub for the remote running service. And
135 * Class for interacting with the main interface of the service.
139 IBinder service) {
140 // This is called when the connection with the service has been
142 mService = IBordeauxService.Stub.asInterface(service);
146 // This is called when the connection with the service has been
/frameworks/support/v4/java/android/support/v4/app/
H A DNotificationManagerCompat.java65 * Intent action to register for on a service to receive side channel
66 * notifications. The listening service must be in the same package as an enabled
67 * {@link android.service.notification.NotificationListenerService}.
340 record.service = INotificationSideChannel.Stub.asInterface(iBinder);
363 Log.d(TAG, "Connected to service " + componentName);
373 Log.d(TAG, "Disconnected from service " + componentName);
430 * Ensure we are already attempting to bind to a service, or start a new binding if not.
431 * @return Whether the service bind attempt was successful.
449 * Ensure we have unbound from a service.
456 record.service
534 public INotificationSideChannel service; field in class:NotificationManagerCompat.SideChannelManager.ListenerRecord
558 send(INotificationSideChannel service) argument
575 send(INotificationSideChannel service) argument
610 send(INotificationSideChannel service) argument
[all...]
/frameworks/base/core/java/android/app/
H A DLoadedApk.java1059 public void connected(ComponentName name, IBinder service) throws RemoteException { argument
1062 sd.connected(name, service);
1131 public void connected(ComponentName name, IBinder service) { argument
1133 mActivityThread.post(new RunConnection(name, service, 0));
1135 doConnected(name, service);
1139 public void death(ComponentName name, IBinder service) { argument
1145 if (old == null || old.binder != service) {
1154 mActivityThread.post(new RunConnection(name, service, 1));
1156 doDeath(name, service);
1160 public void doConnected(ComponentName name, IBinder service) { argument
1212 doDeath(ComponentName name, IBinder service) argument
1217 RunConnection(ComponentName name, IBinder service, int command) argument
1238 DeathMonitor(ComponentName name, IBinder service) argument
[all...]
H A DWallpaperInfo.java36 import android.service.wallpaper.WallpaperService;
44 * This class is used to specify meta information of a wallpaper service.
79 * @param service The ResolveInfo returned from the package manager about
82 public WallpaperInfo(Context context, ResolveInfo service) argument
84 mService = service;
85 ServiceInfo si = service.serviceInfo;
161 * Return the class name of the service component that implements
177 * Return the component of the service that implements this wallpaper.
/frameworks/av/media/libmediaplayerservice/
H A DMetadataRetrieverClient.h40 MetadataRetrieverClient(const sp<IMediaPlayerService>& service, pid_t pid, int32_t connId);
/frameworks/base/core/java/android/content/
H A DBroadcastReceiver.java182 * <p>In particular, you may <i>not</i> show a dialog or bind to a service from
186 * send a command to the service.
474 * to interact with a service that is already running, you can use
511 * Provide a binder to an already-running service. This method is synchronous
512 * and will not start the target service if it is not present, so it is safe
516 * @param service The Intent indicating the service you wish to use. See {@link
519 public IBinder peekService(Context myContext, Intent service) { argument
523 service.prepareToLeaveProcess();
524 binder = am.peekService(service, servic
[all...]
/frameworks/base/core/java/android/hardware/hdmi/
H A DHdmiTvClient.java46 /* package */ HdmiTvClient(IHdmiControlService service) { argument
47 super(service);
52 /* package */ static HdmiTvClient create(IHdmiControlService service) { argument
53 return new HdmiTvClient(service);
/frameworks/base/core/java/android/service/carrier/
H A DMessagePdu.java17 package android.service.carrier;
/frameworks/base/core/java/android/service/notification/
H A DNotificationRankingUpdate.java16 package android.service.notification;
/frameworks/base/core/java/android/service/restrictions/
H A DRestrictionsReceiver.java17 package android.service.restrictions;
/frameworks/base/core/java/android/webkit/
H A DUrlInterceptRegistry.java132 CacheResult result = handler.service(url, headers);
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/
H A DServiceMonitor.java41 * Manages a persistent connection to a service component defined in a secure setting.
43 * <p>If a valid service component is specified in the secure setting, starts it up and keeps it
54 /** The service does not exist or failed to bind */
56 /** The service is about to start, this is a chance to perform cleanup and
117 public void onServiceConnected(ComponentName name, IBinder service) { argument
118 if (mDebug) Log.d(mTag, "onServiceConnected name=" + name + " service=" + service);
120 mService = service;
122 service.linkToDeath(this, 0);
243 Log.w(mTag, "Error binding to service
[all...]
/frameworks/base/services/
H A DAndroid.mk33 # The convention is to name each service module 'services.$(module_name)'
67 # by only including service makefiles and not any tests or other
/frameworks/base/services/core/java/com/android/server/notification/
H A DNextAlarmConditionProvider.java24 import android.service.notification.Condition;
25 import android.service.notification.ConditionProviderService;
26 import android.service.notification.IConditionProvider;
27 import android.service.notification.ZenModeConfig;
/frameworks/base/tools/layoutlib/bridge/src/android/view/accessibility/
H A DAccessibilityManager.java31 * System level service that serves as an event dispatch for {@link AccessibilityEvent}s.
35 * events implement and register an accessibility service which extends
111 public AccessibilityManager(Context context, IAccessibilityManager service, int userId) { argument
/frameworks/native/include/binder/
H A DIServiceManager.h36 * Retrieve an existing service, blocking for a few seconds
42 * Retrieve an existing service, non-blocking.
47 * Register a service.
50 const sp<IBinder>& service,
/frameworks/base/services/core/java/com/android/server/fingerprint/
H A DFingerprintService.java28 import android.service.fingerprint.FingerprintManager;
34 import android.service.fingerprint.FingerprintUtils;
35 import android.service.fingerprint.IFingerprintService;
36 import android.service.fingerprint.IFingerprintServiceReceiver;
45 * A service to manage multiple clients that want to access the fingerprint HAL API.
46 * The service is responsible for maintaining a list of clients and dispatching all
126 native void nativeInit(FingerprintService service); argument
/frameworks/base/services/core/java/com/android/server/media/
H A DRemoteDisplayProviderProxy.java39 * Maintains a connection to a particular remote display provider service.
190 Intent service = new Intent(RemoteDisplayState.SERVICE_INTERFACE);
191 service.setComponent(mComponentName);
193 mBound = mContext.bindServiceAsUser(service, this, Context.BIND_AUTO_CREATE,
219 public void onServiceConnected(ComponentName name, IBinder service) { argument
227 IRemoteDisplayProvider provider = IRemoteDisplayProvider.Stub.asInterface(service);
416 * Receives callbacks from the service.
419 * to prevent the client from being leaked in case the service is holding an

Completed in 614 milliseconds

1234567891011>>