Searched defs:service (Results 1 - 25 of 345) sorted by relevance

1234567891011>>

/frameworks/native/services/sensorservice/
H A DSensorEventAckReceiver.h30 SensorEventAckReceiver(const sp<SensorService>& service) argument
31 : mService(service) {
/frameworks/base/core/java/android/content/
H A DServiceConnection.java22 * Interface for monitoring the state of an application service. See
34 * @param name The concrete component name of the service that has
37 * @param service The IBinder of the Service's communication channel,
40 public void onServiceConnected(ComponentName name, IBinder service); argument
44 * happens when the process hosting the service has crashed or been killed.
46 * binding to the service will remain active, and you will receive a call
49 * @param name The concrete component name of the service whose
/frameworks/base/core/java/android/service/wallpaper/
H A DWallpaperSettingsActivity.java17 package android.service.wallpaper;
35 = "android.service.wallpaper.PREVIEW_MODE";
/frameworks/base/core/java/android/webkit/
H A DUrlInterceptHandler.java44 public CacheResult service(String url, Map<String, String> headers); method in interface:UrlInterceptHandler
/frameworks/base/tools/layoutlib/bridge/src/android/view/
H A DWindowManagerGlobal_Delegate.java40 public static void setWindowManagerService(IWindowManager service) { argument
41 sService = service;
/frameworks/base/core/java/android/service/dreams/
H A DDreamManagerInternal.java17 package android.service.dreams;
20 * Dream manager local system service interface.
H A DSandman.java17 package android.service.dreams;
32 * <code>UiModeManagerService</code> system service and the <code>Somnambulator</code> activity.
96 "android.service.dreams:DREAM");
/frameworks/base/core/java/android/service/voice/
H A DVoiceInteractionManagerInternal.java17 package android.service.voice;
38 * Returns whether the currently selected voice interaction service supports local voice
/frameworks/base/core/java/com/android/server/
H A DLocalServices.java39 * Returns a local service instance that implements the specified interface.
41 * @param type The type of service.
42 * @return The service object.
52 * Adds a service instance of the specified interface to the global registry of local services.
54 public static <T> void addService(Class<T> type, T service) { argument
57 throw new IllegalStateException("Overriding service registration");
59 sLocalServiceObjects.put(type, service);
64 * Remove a service instance, must be only used in tests.
/frameworks/base/services/tests/servicestests/src/com/android/server/am/
H A DActivityManagerTest.java31 IActivityManager service; field in class:ActivityManagerTest
35 service = ActivityManagerNative.getDefault();
39 for(int userId : service.getRunningUserIds()) {
45 List<ActivityManager.RecentTaskInfo> recentTasks = service.getRecentTasks(
/frameworks/support/compat/api24/android/support/v4/app/
H A DServiceCompatApi24.java21 public static void stopForeground(Service service, int flags) { argument
22 service.stopForeground(flags);
/frameworks/support/customtabs/src/android/support/customtabs/
H A DCustomTabsServiceConnection.java31 public final void onServiceConnected(ComponentName name, IBinder service) { argument
33 ICustomTabsService.Stub.asInterface(service), name) {
39 * @param name The concrete component name of the service that has been connected.
/frameworks/base/core/java/android/service/persistentdata/
H A DPersistentDataBlockManager.java17 package android.service.persistentdata;
71 public PersistentDataBlockManager(IPersistentDataBlockService service) { argument
72 sService = service;
/frameworks/base/core/java/android/hardware/
H A DSerialManager.java37 public SerialManager(Context context, ISerialManager service) { argument
39 mService = service;
/frameworks/base/core/java/android/net/metrics/
H A DIpConnectivityLog.java43 public IpConnectivityLog(IIpConnectivityMetrics service) { argument
44 mService = service;
51 final IIpConnectivityMetrics service =
53 if (service == null) {
58 mService = service;
71 Log.d(TAG, SERVICE_NAME + " service was not ready");
/frameworks/base/core/java/android/os/
H A DServiceManager.java38 // Find the service manager
44 * Returns a reference to a service with the given name.
46 * @param name the name of the service to get
47 * @return a reference to the service, or <code>null</code> if the service doesn't exist
51 IBinder service = sCache.get(name);
52 if (service != null) {
53 return service;
64 * Place a new @a service called @a name into the service
70 addService(String name, IBinder service) argument
87 addService(String name, IBinder service, boolean allowIsolated) argument
[all...]
/frameworks/base/core/java/android/service/carrier/
H A DCarrierService.java15 package android.service.carrier;
28 * A service that exposes carrier-specific functionality to the system.
30 * To extend this class, you must declare the service in your manifest file to require the
32 * filter with the {@link #CARRIER_SERVICE_INTERFACE}. If the service should have a long-lived
33 * binding, set android.service.carrier.LONG_LIVED_BINDING to true in the service's metadata.
38 * <service android:name=".MyCarrierService"
42 * <action android:name="android.service.carrier.CarrierService" />
44 * <meta-data android:name="android.service.carrier.LONG_LIVED_BINDING"
46 * </service>
[all...]
H A DMessagePdu.java17 package android.service.carrier;
/frameworks/base/core/java/android/service/media/
H A DCameraPrewarmService.java17 package android.service.media;
27 * Extend this class to implement a camera prewarm service. See
33 * Intent action to bind the service as a prewarm service.
37 "android.service.media.CameraPrewarmService.ACTION_PREWARM";
/frameworks/base/core/java/android/service/restrictions/
H A DRestrictionsReceiver.java17 package android.service.restrictions;
/frameworks/base/core/tests/coretests/src/android/print/mockservice/
H A DPrintServiceCallbacks.java30 public void setService(PrintService service) { argument
31 mService = service;
/frameworks/base/native/android/
H A Dnet.c76 const char *node, const char *service,
84 return android_getaddrinfofornet(node, service, hints, netid, 0, res);
75 android_getaddrinfofornetwork(net_handle_t network, const char *node, const char *service, const struct addrinfo *hints, struct addrinfo **res) argument
/frameworks/base/packages/PrintSpooler/src/com/android/printspooler/model/
H A DPrintSpoolerProvider.java49 public void onServiceConnected(ComponentName name, IBinder service) { argument
50 mSpooler = ((PrintSpoolerService.PrintSpooler) service).getService();
/frameworks/base/services/core/java/com/android/server/am/
H A DAppWaitingForDebuggerDialog.java30 public AppWaitingForDebuggerDialog(ActivityManagerService service, argument
33 mService = service;
H A DCompatModeDialog.java39 public CompatModeDialog(ActivityManagerService service, Context context, argument
47 mService = service;

Completed in 1315 milliseconds

1234567891011>>