Lines Matching refs:EventEntry
60 EventEntry::EventEntry(int32_t id, Type type, nsecs_t eventTime, uint32_t policyFlags) in EventEntry() function in android::inputdispatcher::EventEntry
68 EventEntry::~EventEntry() { in ~EventEntry()
72 void EventEntry::releaseInjectionState() { in releaseInjectionState()
82 : EventEntry(id, Type::CONFIGURATION_CHANGED, eventTime, 0) {} in ConfigurationChangedEntry()
93 : EventEntry(id, Type::DEVICE_RESET, eventTime, 0), deviceId(deviceId) {} in DeviceResetEntry()
106 : EventEntry(id, Type::FOCUS, eventTime, POLICY_FLAG_PASS_TO_USER), in FocusEntry()
123 : EventEntry(id, Type::POINTER_CAPTURE_CHANGED, eventTime, POLICY_FLAG_PASS_TO_USER), in PointerCaptureChangedEntry()
138 : EventEntry(id, Type::DRAG, eventTime, POLICY_FLAG_PASS_TO_USER), in DragEntry()
156 : EventEntry(id, Type::KEY, eventTime, policyFlags), in KeyEntry()
204 : EventEntry(id, Type::MOTION, eventTime, policyFlags), in MotionEntry()
265 : EventEntry(id, Type::SENSOR, eventTime, policyFlags), in SensorEntry()
298 DispatchEntry::DispatchEntry(std::shared_ptr<EventEntry> eventEntry, int32_t targetFlags, in DispatchEntry()