Home
last modified time | relevance | path

Searched refs:nativeService (Results 1 – 8 of 8) sorted by relevance

/frameworks/base/services/core/java/com/android/server/input/
DKeyRemapper.java51 KeyRemapper(Context context, NativeInputManagerService nativeService, in KeyRemapper() argument
54 mNative = nativeService; in KeyRemapper()
DKeyboardLedController.java70 NativeInputManagerService nativeService) { in KeyboardLedController() argument
72 mNative = nativeService; in KeyboardLedController()
DPointerIconCache.java94 /* package */ PointerIconCache(Context context, NativeInputManagerService nativeService) { in PointerIconCache() argument
96 mNative = nativeService; in PointerIconCache()
DKeyboardBacklightController.java126 KeyboardBacklightController(Context context, NativeInputManagerService nativeService, in KeyboardBacklightController() argument
128 this(context, nativeService, dataStore, looper, ValueAnimator::ofInt, uEventManager); in KeyboardBacklightController()
132 KeyboardBacklightController(Context context, NativeInputManagerService nativeService, in KeyboardBacklightController() argument
136 mNative = nativeService; in KeyboardBacklightController()
DBatteryController.java104 BatteryController(Context context, NativeInputManagerService nativeService, Looper looper, in BatteryController() argument
106 this(context, nativeService, looper, uEventManager, in BatteryController()
111 BatteryController(Context context, NativeInputManagerService nativeService, Looper looper, in BatteryController() argument
114 mNative = nativeService; in BatteryController()
DKeyboardLayoutManager.java138 KeyboardLayoutManager(Context context, NativeInputManagerService nativeService, in KeyboardLayoutManager() argument
141 mNative = nativeService; in KeyboardLayoutManager()
/frameworks/native/services/surfaceflinger/tests/
DIPC_test.cpp279 sp<IIPCTest> nativeService = new BnIPCTest; in initRemoteService() local
280 if (!nativeService) { in initRemoteService()
284 IInterface::asBinder(nativeService)); in initRemoteService()
/frameworks/native/libs/binder/tests/
DbinderSafeInterfaceTest.cpp832 sp<BnSafeInterfaceTest> nativeService = new BnSafeInterfaceTest; in main() local
833 status_t status = defaultServiceManager()->addService(kServiceName, nativeService); in main()