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() : sequenceNum(0), eventTime(0) { } in NotifyArgs() argument 39 inline explicit NotifyArgs(uint32_t sequenceNum, nsecs_t eventTime) : in NotifyArgs() argument 42 virtual ~NotifyArgs() { } in ~NotifyArgs() argument 49 struct NotifyConfigurationChangedArgs : public NotifyArgs { 66 struct NotifyKeyArgs : public NotifyArgs { 95 struct NotifyMotionArgs : public NotifyArgs { 147 struct NotifySwitchArgs : public NotifyArgs { 169 struct NotifyDeviceResetArgs : public NotifyArgs { 224 std::vector<NotifyArgs*> mArgsQueue;
|
/frameworks/native/services/inputflinger/ |
D | InputListener.cpp | 31 NotifyArgs(sequenceNum, eventTime) { in NotifyConfigurationChangedArgs() 36 NotifyArgs(other.sequenceNum, other.eventTime) { in NotifyConfigurationChangedArgs() 54 NotifyArgs(sequenceNum, eventTime), deviceId(deviceId), source(source), in NotifyKeyArgs() 61 NotifyArgs(other.sequenceNum, other.eventTime), deviceId(other.deviceId), in NotifyKeyArgs() 98 NotifyArgs(sequenceNum, eventTime), deviceId(deviceId), source(source), in NotifyMotionArgs() 113 NotifyArgs(other.sequenceNum, other.eventTime), deviceId(other.deviceId), in NotifyMotionArgs() 173 NotifyArgs(sequenceNum, eventTime), policyFlags(policyFlags), in NotifySwitchArgs() 178 NotifyArgs(other.sequenceNum, other.eventTime), policyFlags(other.policyFlags), in NotifySwitchArgs() 199 NotifyArgs(sequenceNum, eventTime), deviceId(deviceId) { in NotifyDeviceResetArgs() 203 NotifyArgs(other.sequenceNum, other.eventTime), deviceId(other.deviceId) { in NotifyDeviceResetArgs() [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()
|