/frameworks/native/services/inputflinger/tests/ |
D | EventHub_test.cpp | 33 using android::RawEvent; 41 static void dumpEvents(const std::vector<RawEvent>& events) { in dumpEvents() 42 for (const RawEvent& event : events) { in dumpEvents() 98 std::vector<RawEvent> getEvents(std::optional<size_t> expectedEvents = std::nullopt); 101 std::vector<RawEvent> EventHubTest::getEvents(std::optional<size_t> expectedEvents) { in getEvents() 103 std::array<RawEvent, EVENT_BUFFER_SIZE> eventBuffer; in getEvents() 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() [all …]
|
/frameworks/base/tests/GamePerformance/src/android/gameperformance/ |
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 128 public void findEvents(String path, List<RawEvent> collector) { in findEvents() 132 for (RawEvent child : mChildren) { in findEvents() 146 for (RawEvent e : mChildren) { in dump() 202 private static Map<Integer, RawEvent> buildEventModel(String fileName) throws IOException { in buildEventModel() 203 Map<Integer, RawEvent> result = new HashMap<>(); in buildEventModel() 280 result.put(threadId, new RawEvent(null /* parent */, in buildEventModel() [all …]
|
/frameworks/native/services/inputflinger/reader/mapper/accumulator/ |
D | CursorButtonAccumulator.h | 25 struct RawEvent; 33 void process(const RawEvent* rawEvent);
|
D | TouchButtonAccumulator.h | 25 struct RawEvent; 34 void process(const RawEvent* rawEvent);
|
D | CursorScrollAccumulator.h | 25 struct RawEvent; 35 void process(const RawEvent* rawEvent);
|
D | SingleTouchMotionAccumulator.h | 25 struct RawEvent; 32 void process(const RawEvent* rawEvent);
|
D | CursorScrollAccumulator.cpp | 42 void CursorScrollAccumulator::process(const RawEvent* rawEvent) { in process()
|
D | SingleTouchMotionAccumulator.cpp | 48 void SingleTouchMotionAccumulator::process(const RawEvent* rawEvent) { in process()
|
D | CursorButtonAccumulator.cpp | 50 void CursorButtonAccumulator::process(const RawEvent* rawEvent) { in process()
|
/frameworks/native/services/inputflinger/reader/mapper/ |
D | MultiTouchInputMapper.h | 74 void process(const RawEvent* rawEvent); 89 void warnIfNotInUse(const RawEvent& event, const Slot& slot); 98 void process(const RawEvent* rawEvent) override;
|
D | CursorInputMapper.h | 41 void process(const RawEvent* rawEvent); 65 virtual void process(const RawEvent* rawEvent) override;
|
D | SingleTouchInputMapper.h | 31 void process(const RawEvent* rawEvent) override;
|
D | SwitchInputMapper.h | 30 virtual void process(const RawEvent* rawEvent) override;
|
D | ExternalStylusInputMapper.h | 39 virtual void process(const RawEvent* rawEvent) override;
|
D | RotaryEncoderInputMapper.h | 36 virtual void process(const RawEvent* rawEvent) override;
|
D | MultiTouchInputMapper.cpp | 82 void MultiTouchMotionAccumulator::process(const RawEvent* rawEvent) { in process() 175 void MultiTouchMotionAccumulator::warnIfNotInUse(const RawEvent& event, const Slot& slot) { in warnIfNotInUse() 237 void MultiTouchInputMapper::process(const RawEvent* rawEvent) { in process()
|
D | VibratorInputMapper.h | 31 virtual void process(const RawEvent* rawEvent) override;
|
D | SwitchInputMapper.cpp | 32 void SwitchInputMapper::process(const RawEvent* rawEvent) { in process()
|
D | ExternalStylusInputMapper.cpp | 59 void ExternalStylusInputMapper::process(const RawEvent* rawEvent) { in process()
|
D | SingleTouchInputMapper.cpp | 32 void SingleTouchInputMapper::process(const RawEvent* rawEvent) { in process()
|
D | JoystickInputMapper.h | 35 virtual void process(const RawEvent* rawEvent) override;
|
D | RotaryEncoderInputMapper.cpp | 86 void RotaryEncoderInputMapper::process(const RawEvent* rawEvent) { in process()
|
D | KeyboardInputMapper.h | 35 virtual void process(const RawEvent* rawEvent) override;
|
D | VibratorInputMapper.cpp | 38 void VibratorInputMapper::process(const RawEvent* rawEvent) { in process()
|
/frameworks/native/services/inputflinger/reader/include/ |
D | InputReader.h | 174 RawEvent mEventBuffer[EVENT_BUFFER_SIZE] GUARDED_BY(mLock); 187 void processEventsLocked(const RawEvent* rawEvents, size_t count) REQUIRES(mLock); 191 void processEventsForDeviceLocked(int32_t eventHubId, const RawEvent* rawEvents, size_t count)
|