Searched refs:NotifyArgs (Results 1 – 4 of 4) sorted by relevance
/frameworks/native/services/inputflinger/include/ |
D | InputListener.h | 33 struct NotifyArgs { struct 37 inline NotifyArgs() : id(0), eventTime(0) {} in NotifyArgs() argument 39 inline explicit NotifyArgs(int32_t id, nsecs_t eventTime) : id(id), eventTime(eventTime) {} in NotifyArgs() function 41 virtual ~NotifyArgs() { } in ~NotifyArgs() argument 48 struct NotifyConfigurationChangedArgs : public NotifyArgs { 65 struct NotifyKeyArgs : public NotifyArgs { 96 struct NotifyMotionArgs : public NotifyArgs { 149 struct NotifySensorArgs : public NotifyArgs { 174 struct NotifySwitchArgs : public NotifyArgs { 196 struct NotifyDeviceResetArgs : public NotifyArgs { [all …]
|
/frameworks/native/services/inputflinger/ |
D | InputListener.cpp | 37 : NotifyArgs(id, eventTime) {} in NotifyConfigurationChangedArgs() 41 : NotifyArgs(other.id, other.eventTime) {} in NotifyConfigurationChangedArgs() 57 : NotifyArgs(id, eventTime), in NotifyKeyArgs() 71 : NotifyArgs(other.id, other.eventTime), in NotifyKeyArgs() 106 : NotifyArgs(id, eventTime), in NotifyMotionArgs() 133 : NotifyArgs(other.id, other.eventTime), in NotifyMotionArgs() 199 : NotifyArgs(id, eventTime), in NotifySwitchArgs() 205 : NotifyArgs(other.id, other.eventTime), in NotifySwitchArgs() 225 : NotifyArgs(id, eventTime), in NotifySensorArgs() 235 : NotifyArgs(other.id, other.eventTime), in NotifySensorArgs() [all …]
|
D | InputClassifier.h | 40 std::unique_ptr<NotifyArgs> args; 42 ClassifierEvent(ClassifierEventType type, std::unique_ptr<NotifyArgs> args);
|
D | InputClassifier.cpp | 80 ClassifierEvent::ClassifierEvent(ClassifierEventType type, std::unique_ptr<NotifyArgs> args) : in ClassifierEvent()
|