Searched refs:service (Results 1 - 25 of 417) sorted by relevance

1234567891011>>

/frameworks/base/core/java/android/service/notification/
H A DIStatusBarNotificationHolder.aidl17 package android.service.notification;
19 import android.service.notification.StatusBarNotification;
H A DCondition.aidl17 package android.service.notification;
H A DNotificationRankingUpdate.aidl17 package android.service.notification;
H A DStatusBarNotification.aidl17 package android.service.notification;
H A DZenModeConfig.aidl17 package android.service.notification;
H A DIConditionListener.aidl17 package android.service.notification;
20 import android.service.notification.Condition;
H A DIConditionProvider.aidl17 package android.service.notification;
20 import android.service.notification.Condition;
H A DINotificationListener.aidl17 package android.service.notification;
19 import android.service.notification.IStatusBarNotificationHolder;
20 import android.service.notification.StatusBarNotification;
21 import android.service.notification.NotificationRankingUpdate;
/frameworks/base/core/java/android/service/carrier/
H A DMessagePdu.aidl17 package android.service.carrier;
/frameworks/native/libs/binder/
H A DAppOpsManager.cpp29 static const sp<IBinder>& getToken(const sp<IAppOpsService>& service) { argument
32 gToken = service->getToken(new BBinder());
46 sp<IAppOpsService> service = mService; local
47 while (service == NULL || !service->asBinder()->isBinderAlive()) {
50 // Wait for the app ops service to come back...
53 ALOGI("Waiting for app ops service");
55 ALOGW("Waiting too long for app ops service, giving up");
60 service = interface_cast<IAppOpsService>(binder);
61 mService = service;
70 sp<IAppOpsService> service = getService(); local
75 sp<IAppOpsService> service = getService(); local
80 sp<IAppOpsService> service = getService(); local
86 sp<IAppOpsService> service = getService(); local
94 sp<IAppOpsService> service = getService(); local
101 sp<IAppOpsService> service = getService(); local
[all...]
/frameworks/base/core/java/android/service/voice/
H A DIVoiceInteractionService.aidl17 package android.service.voice;
H A DIVoiceInteractionSessionService.aidl17 package android.service.voice;
21 import android.service.voice.IVoiceInteractionSession;
/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/nfc/
H A DINfcCardEmulation.aidl29 boolean isDefaultServiceForCategory(int userHandle, in ComponentName service, String category);
30 boolean isDefaultServiceForAid(int userHandle, in ComponentName service, String aid);
31 boolean setDefaultServiceForCategory(int userHandle, in ComponentName service, String category);
32 boolean setDefaultForNextTap(int userHandle, in ComponentName service);
33 boolean registerAidGroupForService(int userHandle, in ComponentName service, in AidGroup aidGroup);
34 AidGroup getAidGroupForService(int userHandle, in ComponentName service, String category);
35 boolean removeAidGroupForService(int userHandle, in ComponentName service, String category);
37 boolean setPreferredService(in ComponentName 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 DIDreamService.aidl17 package android.service.dreams;
/frameworks/base/libs/common_time/
H A Dmain.cpp18 * A service that exchanges time synchronization information between
33 sp<CommonTimeServer> service = new CommonTimeServer();
34 if (service == NULL)
38 service->run("CommonTimeServer", ANDROID_PRIORITY_NORMAL);
/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 DIWallpaperConnection.aidl17 package android.service.wallpaper;
20 import android.service.wallpaper.IWallpaperEngine;
H A DIWallpaperService.aidl17 package android.service.wallpaper;
20 import android.service.wallpaper.IWallpaperConnection;
/frameworks/native/cmds/service/
H A DAndroid.mk5 service.cpp
14 LOCAL_MODULE:= service
/frameworks/base/services/core/java/com/android/server/
H A DSystemServiceManager.java48 * Starts a service by class name.
50 * @return The service instance.
59 throw new RuntimeException("Failed to create service " + className
60 + ": service class not found, usually indicates that the caller should "
69 * Creates and starts a system service. The class must be a subclass of
73 * @return The service instance, never null.
74 * @throws RuntimeException if the service fails to start.
81 // Create the service.
84 + ": service must extend " + SystemService.class.getName());
86 final T 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/core/java/android/app/
H A DIServiceConnection.aidl24 void connected(in ComponentName name, IBinder service);
/frameworks/base/core/java/com/android/internal/widget/
H A DIRemoteViewsAdapterConnection.aidl23 void onServiceConnected(IBinder service);

Completed in 428 milliseconds

1234567891011>>