Lines Matching refs:expectedDisplayId

774                       std::optional<int32_t> expectedDisplayId,  in consumeEvent()  argument
784 if (expectedDisplayId.has_value()) { in consumeEvent()
785 EXPECT_EQ(expectedDisplayId, event->getDisplayId()); in consumeEvent()
994 void consumeKeyDown(int32_t expectedDisplayId, int32_t expectedFlags = 0) { in consumeKeyDown() argument
995 consumeEvent(AINPUT_EVENT_TYPE_KEY, AKEY_EVENT_ACTION_DOWN, expectedDisplayId, in consumeKeyDown()
999 void consumeKeyUp(int32_t expectedDisplayId, int32_t expectedFlags = 0) { in consumeKeyUp() argument
1000 consumeEvent(AINPUT_EVENT_TYPE_KEY, AKEY_EVENT_ACTION_UP, expectedDisplayId, expectedFlags); in consumeKeyUp()
1003 void consumeMotionCancel(int32_t expectedDisplayId = ADISPLAY_ID_DEFAULT, in consumeMotionCancel() argument
1005 consumeEvent(AINPUT_EVENT_TYPE_MOTION, AMOTION_EVENT_ACTION_CANCEL, expectedDisplayId, in consumeMotionCancel()
1009 void consumeMotionMove(int32_t expectedDisplayId = ADISPLAY_ID_DEFAULT, in consumeMotionMove() argument
1011 consumeEvent(AINPUT_EVENT_TYPE_MOTION, AMOTION_EVENT_ACTION_MOVE, expectedDisplayId, in consumeMotionMove()
1015 void consumeMotionDown(int32_t expectedDisplayId = ADISPLAY_ID_DEFAULT, in consumeMotionDown() argument
1017 consumeAnyMotionDown(expectedDisplayId, expectedFlags); in consumeMotionDown()
1020 void consumeAnyMotionDown(std::optional<int32_t> expectedDisplayId = std::nullopt, in consumeAnyMotionDown() argument
1022 consumeEvent(AINPUT_EVENT_TYPE_MOTION, AMOTION_EVENT_ACTION_DOWN, expectedDisplayId, in consumeAnyMotionDown()
1027 int32_t expectedDisplayId = ADISPLAY_ID_DEFAULT, in consumeMotionPointerDown() argument
1031 consumeEvent(AINPUT_EVENT_TYPE_MOTION, action, expectedDisplayId, expectedFlags); in consumeMotionPointerDown()
1034 void consumeMotionPointerUp(int32_t pointerIdx, int32_t expectedDisplayId = ADISPLAY_ID_DEFAULT, in consumeMotionPointerUp() argument
1038 consumeEvent(AINPUT_EVENT_TYPE_MOTION, action, expectedDisplayId, expectedFlags); in consumeMotionPointerUp()
1041 void consumeMotionUp(int32_t expectedDisplayId = ADISPLAY_ID_DEFAULT, in consumeMotionUp() argument
1043 consumeEvent(AINPUT_EVENT_TYPE_MOTION, AMOTION_EVENT_ACTION_UP, expectedDisplayId, in consumeMotionUp()
1047 void consumeMotionOutside(int32_t expectedDisplayId = ADISPLAY_ID_DEFAULT, in consumeMotionOutside() argument
1049 consumeEvent(AINPUT_EVENT_TYPE_MOTION, AMOTION_EVENT_ACTION_OUTSIDE, expectedDisplayId, in consumeMotionOutside()
1066 std::optional<int32_t> expectedDisplayId, in consumeEvent() argument
1069 mInputReceiver->consumeEvent(expectedEventType, expectedAction, expectedDisplayId, in consumeEvent()
2285 void consumeKeyDown(int32_t expectedDisplayId, int32_t expectedFlags = 0) { in consumeKeyDown() argument
2287 expectedDisplayId, expectedFlags); in consumeKeyDown()
2294 void consumeMotionDown(int32_t expectedDisplayId, int32_t expectedFlags = 0) { in consumeMotionDown() argument
2296 expectedDisplayId, expectedFlags); in consumeMotionDown()
2299 void consumeMotionUp(int32_t expectedDisplayId, int32_t expectedFlags = 0) { in consumeMotionUp() argument
2301 expectedDisplayId, expectedFlags); in consumeMotionUp()
2304 void consumeMotionCancel(int32_t expectedDisplayId, int32_t expectedFlags = 0) { in consumeMotionCancel() argument
2306 expectedDisplayId, expectedFlags); in consumeMotionCancel()