Home
last modified time | relevance | path

Searched refs:createInputMonitor (Results 1 – 7 of 7) sorted by relevance

/frameworks/native/services/inputflinger/dispatcher/include/
DInputDispatcherInterface.h183 virtual base::Result<std::unique_ptr<InputChannel>> createInputMonitor(
/frameworks/base/services/core/java/com/android/server/input/
DNativeInputManagerService.java59 InputChannel createInputMonitor(int displayId, String name, int pid); in createInputMonitor() method
322 public native InputChannel createInputMonitor(int displayId, String name, int pid); in createInputMonitor() method in NativeInputManagerService.NativeImpl
DInputManagerService.java712 return mNative.createInputMonitor(displayId, inputChannelName, Binder.getCallingPid()); in monitorInput()
/frameworks/base/services/core/jni/
Dcom_android_server_input_InputManagerService.cpp274 base::Result<std::unique_ptr<InputChannel>> createInputMonitor(ui::LogicalDisplayId displayId,
562 base::Result<std::unique_ptr<InputChannel>> NativeInputManager::createInputMonitor( in createInputMonitor() function in android::NativeInputManager
565 return mInputManager->getDispatcher().createInputMonitor(displayId, name, pid); in createInputMonitor()
1897 im->createInputMonitor(ui::LogicalDisplayId{displayId}, name, gui::Pid{pid}); in nativeCreateInputMonitor()
/frameworks/native/services/inputflinger/dispatcher/
DInputDispatcher.h135 base::Result<std::unique_ptr<InputChannel>> createInputMonitor(ui::LogicalDisplayId displayId,
DInputDispatcher.cpp6127 Result<std::unique_ptr<InputChannel>> InputDispatcher::createInputMonitor( in createInputMonitor() function in android::inputdispatcher::InputDispatcher
/frameworks/native/services/inputflinger/tests/
DInputDispatcher_test.cpp443 : mInputReceiver(*dispatcher.createInputMonitor(displayId, name, MONITOR_PID), name) {} in FakeMonitorReceiver()