/aosp12/frameworks/native/services/inputflinger/tests/ |
H A D | EventHub_test.cpp | 33 using android::RawEvent; 42 for (const RawEvent& event : events) { in dumpEvents() 104 std::vector<RawEvent> events; in getEvents() 133 std::vector<RawEvent> events = getEvents(); in consumeInitialDeviceAddedEvents() 137 const RawEvent& event = events[i]; in consumeInitialDeviceAddedEvents() 150 std::vector<RawEvent> events = getEvents(2); in waitForDeviceCreation() 155 const RawEvent& deviceAddedEvent = events[0]; in waitForDeviceCreation() 167 std::vector<RawEvent> events = getEvents(2); in waitForDeviceClose() 178 std::vector<RawEvent> events = getEvents(); in assertNoMoreEvents() 192 std::vector<RawEvent> events = getEvents(4); in TEST_F() [all …]
|
/aosp12/frameworks/base/tests/GamePerformance/src/android/gameperformance/ |
H A D | GraphicBufferMetrics.java | 100 private static class RawEvent { class in GraphicBufferMetrics 102 public final RawEvent mParent; 110 public final List<RawEvent> mChildren; 112 public RawEvent(RawEvent parent, long time, String name) { in RawEvent() method in GraphicBufferMetrics.RawEvent 132 for (RawEvent child : mChildren) { in findEvents() 146 for (RawEvent e : mChildren) { in dump() 295 RawEvent current = new RawEvent(parent, timeStampMcs, eventText); in buildEventModel() 328 RawEvent root = result.get(threadId); in buildEventModel() 365 for (RawEvent root : model.values()) { in processGraphicBufferResult() 387 for (RawEvent event : collectorPostBuffer) { in processGraphicBufferResult() [all …]
|
/aosp12/frameworks/native/services/inputflinger/reader/mapper/ |
H A D | MultiTouchInputMapper.h | 75 void process(const RawEvent* rawEvent); 90 void warnIfNotInUse(const RawEvent& event, const Slot& slot); 99 void process(const RawEvent* rawEvent) override;
|
H A D | CursorInputMapper.h | 41 void process(const RawEvent* rawEvent); 65 virtual void process(const RawEvent* rawEvent) override;
|
H A D | MultiTouchInputMapper.cpp | 85 void MultiTouchMotionAccumulator::process(const RawEvent* rawEvent) { in process() 178 void MultiTouchMotionAccumulator::warnIfNotInUse(const RawEvent& event, const Slot& slot) { in warnIfNotInUse() 238 void MultiTouchInputMapper::process(const RawEvent* rawEvent) { in process()
|
H A D | SingleTouchInputMapper.h | 31 void process(const RawEvent* rawEvent) override;
|
H A D | SwitchInputMapper.h | 30 virtual void process(const RawEvent* rawEvent) override;
|
H A D | ExternalStylusInputMapper.h | 39 virtual void process(const RawEvent* rawEvent) override;
|
H A D | RotaryEncoderInputMapper.h | 36 virtual void process(const RawEvent* rawEvent) override;
|
H A D | VibratorInputMapper.h | 31 virtual void process(const RawEvent* rawEvent) override;
|
H A D | SwitchInputMapper.cpp | 32 void SwitchInputMapper::process(const RawEvent* rawEvent) { in process()
|
H A D | ExternalStylusInputMapper.cpp | 59 void ExternalStylusInputMapper::process(const RawEvent* rawEvent) { in process()
|
H A D | SingleTouchInputMapper.cpp | 32 void SingleTouchInputMapper::process(const RawEvent* rawEvent) { in process()
|
H A D | JoystickInputMapper.h | 35 virtual void process(const RawEvent* rawEvent) override;
|
H A D | KeyboardInputMapper.h | 35 virtual void process(const RawEvent* rawEvent) override;
|
H A D | RotaryEncoderInputMapper.cpp | 86 void RotaryEncoderInputMapper::process(const RawEvent* rawEvent) { in process()
|
H A D | VibratorInputMapper.cpp | 38 void VibratorInputMapper::process(const RawEvent* rawEvent) { in process()
|
/aosp12/frameworks/native/services/inputflinger/reader/mapper/accumulator/ |
H A D | CursorButtonAccumulator.h | 25 struct RawEvent; 33 void process(const RawEvent* rawEvent);
|
H A D | TouchButtonAccumulator.h | 25 struct RawEvent; 34 void process(const RawEvent* rawEvent);
|
H A D | CursorScrollAccumulator.h | 25 struct RawEvent; 35 void process(const RawEvent* rawEvent);
|
H A D | SingleTouchMotionAccumulator.h | 25 struct RawEvent; 32 void process(const RawEvent* rawEvent);
|
H A D | CursorScrollAccumulator.cpp | 42 void CursorScrollAccumulator::process(const RawEvent* rawEvent) { in process()
|
H A D | SingleTouchMotionAccumulator.cpp | 48 void SingleTouchMotionAccumulator::process(const RawEvent* rawEvent) { in process()
|
H A D | CursorButtonAccumulator.cpp | 50 void CursorButtonAccumulator::process(const RawEvent* rawEvent) { in process()
|
/aosp12/frameworks/native/services/inputflinger/reader/include/ |
H A D | InputReader.h | 173 RawEvent mEventBuffer[EVENT_BUFFER_SIZE] GUARDED_BY(mLock); 186 void processEventsLocked(const RawEvent* rawEvents, size_t count) REQUIRES(mLock); 190 void processEventsForDeviceLocked(int32_t eventHubId, const RawEvent* rawEvents, size_t count)
|