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

1234567891011>>

/frameworks/base/cmds/incidentd/src/
H A Dmain.cpp46 // Create the service
47 sp<IncidentService> service = new IncidentService(looper); local
48 if (defaultServiceManager()->addService(String16("incident"), service) != 0) {
49 ALOGE("Failed to add service");
/frameworks/base/core/java/android/service/autofill/
H A DSanitizer.java16 package android.service.autofill;
22 * by the app&mdash;for example, if the autofill service sends a credit card number
H A DTransformation.java16 package android.service.autofill;
H A DValidator.java16 package android.service.autofill;
H A DAutofillServiceHelper.java17 package android.service.autofill;
H A DInternalSanitizer.java16 package android.service.autofill;
H A DInternalValidator.java16 package android.service.autofill;
H A DValueFinder.java16 package android.service.autofill;
/frameworks/base/tests/Internal/src/android/service/wallpaper/
H A DWallpaperServiceTest.java17 package android.service.wallpaper;
36 WallpaperService service = new WallpaperService() {
47 WallpaperService.Engine engine = service.onCreateEngine();
/frameworks/native/services/sensorservice/
H A DSensorEventAckReceiver.h30 explicit SensorEventAckReceiver(const sp<SensorService>& service) argument
31 : mService(service) {
/frameworks/native/services/vr/bufferhubd/
H A Dbufferhubd.cpp14 std::shared_ptr<android::pdx::Service> service; local
38 CHECK_ERROR(!dispatcher, error, "Failed to create service dispatcher\n");
40 service = android::dvr::BufferHubService::Create();
41 CHECK_ERROR(!service, error, "Failed to create buffer hub service\n");
42 dispatcher->AddService(service);
/frameworks/native/services/vr/hardware_composer/
H A Dvr_hardware_composer_service.cpp27 // Register the hwbinder HWC HAL service used by SurfaceFlinger while in VR
29 android::sp<android::dvr::VrHwc> service = new android::dvr::VrHwc(); local
31 LOG_ALWAYS_FATAL_IF(!service.get(), "Failed to get service");
32 LOG_ALWAYS_FATAL_IF(service->isRemote(), "Service is remote");
35 LOG_ALWAYS_FATAL_IF(service->registerAsService(instance) != android::OK,
36 "Failed to register service");
39 new android::dvr::VrComposer(service.get());
43 // Register the binder service used by VR Window Manager service t
[all...]
/frameworks/base/core/java/android/service/wallpaper/
H A DWallpaperSettingsActivity.java17 package android.service.wallpaper;
35 = "android.service.wallpaper.PREVIEW_MODE";
/frameworks/layoutlib/bridge/src/android/view/
H A DWindowManagerGlobal_Delegate.java40 public static void setWindowManagerService(IWindowManager service) { argument
41 sService = service;
/frameworks/native/services/vr/performanced/
H A Dmain.cpp30 std::shared_ptr<android::pdx::Service> service; local
62 CHECK_ERROR(!dispatcher, error, "Failed to create service dispatcher.");
64 service = android::dvr::PerformanceService::Create();
65 CHECK_ERROR(!service, error, "Failed to create performance service service.");
66 dispatcher->AddService(service);
/frameworks/base/core/java/android/service/oemlock/
H A DOemLockManager.java17 package android.service.oemlock;
42 public OemLockManager(IOemLockService service) { argument
43 mService = service;
/frameworks/base/core/java/android/content/
H A DServiceConnection.java22 * Interface for monitoring the state of an application service. See
35 * client app to a service, it's possible that your app will never receive
37 * the service, such as the service crashing while being created.
39 * @param name The concrete component name of the service that has
42 * @param service The IBinder of the Service's communication channel,
45 void onServiceConnected(ComponentName name, IBinder service); argument
49 * happens when the process hosting the service has crashed or been killed.
51 * binding to the service will remain active, and you will receive a call
54 * @param name The concrete component name of the service whos
[all...]
/frameworks/base/core/java/android/os/
H A DDeviceIdleManager.java25 * Access to the service that keeps track of device idleness and drives low power mode based on
39 public DeviceIdleManager(@NonNull Context context, @NonNull IDeviceIdleController service) { argument
41 mService = service;
/frameworks/base/core/java/android/service/dreams/
H A DDreamManagerInternal.java17 package android.service.dreams;
20 * Dream manager local system service interface.
/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/android/webkit/
H A DUrlInterceptHandler.java47 CacheResult service(String url, @Nullable Map<String, String> headers); method in interface:UrlInterceptHandler
/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/core/java/com/android/server/wm/
H A DStartingData.java28 protected StartingData(WindowManagerService service) { argument
29 mService = service;
/frameworks/base/services/tests/servicestests/src/com/android/server/am/
H A DActivityManagerTest.java30 IActivityManager service; field in class:ActivityManagerTest
34 service = ActivityManager.getService();
38 for(int userId : service.getRunningUserIds()) {
44 List<ActivityManager.RecentTaskInfo> recentTasks = service.getRecentTasks(
/frameworks/base/test-mock/src/android/test/mock/
H A DMockService.java34 public static <T extends Service> void attachForTesting(Service service, Context context, argument
37 service.attach(

Completed in 8766 milliseconds

1234567891011>>