Home
last modified time | relevance | path

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

/frameworks/native/services/inputflinger/reader/include/
DInputDevice.h371 inline std::vector<TouchVideoFrame> getVideoFrames() { return mEventHub->getVideoFrames(mId); } in getVideoFrames() function
DEventHub.h316 virtual std::vector<TouchVideoFrame> getVideoFrames(int32_t deviceId) = 0;
571 std::vector<TouchVideoFrame> getVideoFrames(int32_t deviceId) override final;
/frameworks/native/services/inputflinger/tests/
DInterfaceMocks.h108 MOCK_METHOD(std::vector<TouchVideoFrame>, getVideoFrames, (int32_t deviceId));
DFakeEventHub.h185 std::vector<TouchVideoFrame> getVideoFrames(int32_t deviceId) override;
DFakeEventHub.cpp372 std::vector<TouchVideoFrame> FakeEventHub::getVideoFrames(int32_t deviceId) { in getVideoFrames() function in android::FakeEventHub
/frameworks/native/services/inputflinger/tests/fuzzers/
DMapperHelpers.h154 std::vector<TouchVideoFrame> getVideoFrames(int32_t deviceId) override { return mVideoFrames; } in getVideoFrames() function
/frameworks/native/services/inputflinger/reader/
DEventHub.cpp2112 std::vector<TouchVideoFrame> EventHub::getVideoFrames(int32_t deviceId) { in getVideoFrames() function in android::EventHub
/frameworks/native/services/inputflinger/reader/mapper/
DTouchInputMapper.cpp3696 std::vector<TouchVideoFrame> frames = getDeviceContext().getVideoFrames(); in dispatchMotion()