Home
last modified time | relevance | path

Searched refs:rawEvents (Results 1 – 6 of 6) sorted by relevance

/frameworks/native/services/inputflinger/reader/include/
DInputReader.h226 [[nodiscard]] std::list<NotifyArgs> processEventsLocked(const RawEvent* rawEvents, size_t count)
232 const RawEvent* rawEvents,
DInputDevice.h97 [[nodiscard]] std::list<NotifyArgs> process(const RawEvent* rawEvents, size_t count);
/frameworks/base/tests/GamePerformance/src/android/gameperformance/
DGraphicBufferMetrics.java482 int type, List<RawEvent> rawEvents, List<BufferEvent> bufferEvents) { in toBufferEvents() argument
483 for (RawEvent event : rawEvents) { in toBufferEvents()
/frameworks/native/services/inputflinger/reader/
DInputReader.cpp252 std::list<NotifyArgs> InputReader::processEventsLocked(const RawEvent* rawEvents, size_t count) { in processEventsLocked() argument
254 for (const RawEvent* rawEvent = rawEvents; count;) { in processEventsLocked()
402 const RawEvent* rawEvents, in processEventsForDeviceLocked() argument
416 return device->process(rawEvents, count); in processEventsForDeviceLocked()
DInputDevice.cpp400 std::list<NotifyArgs> InputDevice::process(const RawEvent* rawEvents, size_t count) { in process() argument
407 for (const RawEvent* rawEvent = rawEvents; count != 0; rawEvent++) { in process()
/frameworks/native/services/inputflinger/tests/
DInterfaceMocks.h225 MOCK_METHOD(std::list<NotifyArgs>, process, (const RawEvent* rawEvents, size_t count), ());