Home
last modified time | relevance | path

Searched refs:NotifyArgs (Results 1 – 4 of 4) sorted by relevance

/frameworks/native/services/inputflinger/include/
DInputListener.h33 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/
DInputListener.cpp31 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 …]
DInputClassifier.h40 std::unique_ptr<NotifyArgs> args;
42 ClassifierEvent(ClassifierEventType type, std::unique_ptr<NotifyArgs> args);
DInputClassifier.cpp80 ClassifierEvent::ClassifierEvent(ClassifierEventType type, std::unique_ptr<NotifyArgs> args) : in ClassifierEvent()