Lines Matching refs:dispatcher

909                      const sp<InputDispatcher>& dispatcher, const std::string name,  in FakeWindowHandle()  argument
914 dispatcher->createInputChannel(name); in FakeWindowHandle()
947 const sp<InputDispatcher>& dispatcher, int32_t displayId) { in clone() argument
949 new FakeWindowHandle(inputApplicationHandle, dispatcher, mInfo.name + "(Mirror)", in clone()
1144 const sp<InputDispatcher>& dispatcher, int32_t action, int32_t repeatCount, in injectKey() argument
1162 return dispatcher->injectInputEvent(&event, INJECTOR_PID, INJECTOR_UID, syncMode, in injectKey()
1166 static InputEventInjectionResult injectKeyDown(const sp<InputDispatcher>& dispatcher, in injectKeyDown() argument
1168 return injectKey(dispatcher, AKEY_EVENT_ACTION_DOWN, /* repeatCount */ 0, displayId); in injectKeyDown()
1174 static InputEventInjectionResult injectKeyDownNoRepeat(const sp<InputDispatcher>& dispatcher, in injectKeyDownNoRepeat() argument
1176 return injectKey(dispatcher, AKEY_EVENT_ACTION_DOWN, /* repeatCount */ 0, displayId, in injectKeyDownNoRepeat()
1181 static InputEventInjectionResult injectKeyUp(const sp<InputDispatcher>& dispatcher, in injectKeyUp() argument
1183 return injectKey(dispatcher, AKEY_EVENT_ACTION_UP, /* repeatCount */ 0, displayId); in injectKeyUp()
1308 const sp<InputDispatcher>& dispatcher, const MotionEvent& event, in injectMotionEvent() argument
1311 return dispatcher->injectInputEvent(&event, INJECTOR_PID, INJECTOR_UID, injectionMode, in injectMotionEvent()
1317 const sp<InputDispatcher>& dispatcher, int32_t action, int32_t source, int32_t displayId, in injectMotionEvent() argument
1335 return injectMotionEvent(dispatcher, event, injectionTimeout, injectionMode);
1338 static InputEventInjectionResult injectMotionDown(const sp<InputDispatcher>& dispatcher, in injectMotionDown() argument
1341 return injectMotionEvent(dispatcher, AMOTION_EVENT_ACTION_DOWN, source, displayId, location);
1344 static InputEventInjectionResult injectMotionUp(const sp<InputDispatcher>& dispatcher, in injectMotionUp() argument
1347 return injectMotionEvent(dispatcher, AMOTION_EVENT_ACTION_UP, source, displayId, location);
1749 std::function<bool(sp<InputDispatcher> dispatcher, sp<IBinder>, sp<IBinder>)>;
1862 [&](sp<InputDispatcher> dispatcher, sp<IBinder> /*ignored*/,
1864 return dispatcher->transferTouch(destChannelToken); in __anon90001ff30102()
1866 [&](sp<InputDispatcher> dispatcher, sp<IBinder> from, argument
1868 return dispatcher->transferTouchFocus(from, to, in __anon90001ff30202()
2276 FakeMonitorReceiver(const sp<InputDispatcher>& dispatcher, const std::string name, in FakeMonitorReceiver() argument
2279 dispatcher->createInputMonitor(displayId, isGestureMonitor, name, MONITOR_PID); in FakeMonitorReceiver()