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

1234567891011>>

/frameworks/base/cmds/incidentd/src/
H A Dmain.cpp49 // Create the service
50 android::sp<IncidentService> service = new IncidentService(looper); local
51 if (defaultServiceManager()->addService(String16("incident"), service) != 0) {
52 ALOGE("Failed to add service");
/frameworks/base/core/java/android/service/autofill/
H A DTransformation.java16 package android.service.autofill;
H A DValidator.java16 package android.service.autofill;
H A DInternalValidator.java16 package android.service.autofill;
H A DValueFinder.java16 package android.service.autofill;
H A DInternalTransformation.java16 package android.service.autofill;
H A DValidators.java16 package android.service.autofill;
/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/base/core/java/android/webkit/
H A DUrlInterceptHandler.java44 public CacheResult service(String url, Map<String, String> headers); method in interface:UrlInterceptHandler
/frameworks/base/libs/hwui/service/
H A DGraphicsStatsService.h25 namespace service { namespace in namespace:android
56 static bool parseFromFile(const std::string& path, service::GraphicsStatsProto* output);
/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
34 * @param name The concrete component name of the service that has
37 * @param service The IBinder of the Service's communication channel,
40 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
58 * happen, for example, if the application hosting the service it is bound to
61 * @param name The concrete component name of the service whose
/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/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/native/services/vr/virtual_touchpad/
H A DVirtualTouchpadClient.cpp26 ALOGE("no service manager");
29 sp<IVirtualTouchpadService> service = local
32 if (service == nullptr) {
33 ALOGE("failed to get service");
36 service_ = service;
/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/support/lifecycle/extensions/src/androidTest/java/android/arch/lifecycle/service/
H A DTestService.java17 package android.arch.lifecycle.service;

Completed in 1271 milliseconds

1234567891011>>