Lines Matching refs:FakeInputReceiver
25 FakeInputReceiver::FakeInputReceiver(std::unique_ptr<InputChannel> clientChannel, in FakeInputReceiver() function in android::FakeInputReceiver
29 std::unique_ptr<InputEvent> FakeInputReceiver::consume(std::chrono::milliseconds timeout, in consume()
39 std::pair<std::optional<uint32_t>, std::unique_ptr<InputEvent>> FakeInputReceiver::receiveEvent( in receiveEvent()
72 void FakeInputReceiver::finishEvent(uint32_t consumeSeq, bool handled) { in finishEvent()
77 void FakeInputReceiver::sendTimeline(int32_t inputEventId, in sendTimeline()
83 void FakeInputReceiver::consumeEvent(InputEventType expectedEventType, int32_t expectedAction, in consumeEvent()
129 std::unique_ptr<MotionEvent> FakeInputReceiver::consumeMotion() { in consumeMotion()
144 void FakeInputReceiver::consumeMotionEvent(const ::testing::Matcher<MotionEvent>& matcher) { in consumeMotionEvent()
150 void FakeInputReceiver::consumeFocusEvent(bool hasFocus, bool inTouchMode) { in consumeFocusEvent()
162 void FakeInputReceiver::consumeCaptureEvent(bool hasCapture) { in consumeCaptureEvent()
175 void FakeInputReceiver::consumeDragEvent(bool isExiting, float x, float y) { in consumeDragEvent()
189 void FakeInputReceiver::consumeTouchModeEvent(bool inTouchMode) { in consumeTouchModeEvent()
201 void FakeInputReceiver::assertNoEvents(std::chrono::milliseconds timeout) { in assertNoEvents()
229 sp<IBinder> FakeInputReceiver::getToken() { in getToken()
233 int FakeInputReceiver::getChannelFd() { in getChannelFd()
253 mInputReceiver = std::make_unique<FakeInputReceiver>(std::move(*channel), name); in FakeWindowHandle()