Lines Matching defs:Key
92 struct Key { struct
93 int32_t eventId;
94 uint32_t empty1;
95 nsecs_t eventTime __attribute__((aligned(8)));
96 int32_t deviceId;
97 int32_t source;
98 int32_t displayId;
99 std::array<uint8_t, 32> hmac;
100 int32_t action;
101 int32_t flags;
102 int32_t keyCode;
103 int32_t scanCode;
104 int32_t metaState;
105 int32_t repeatCount;
106 uint32_t empty2;
107 nsecs_t downTime __attribute__((aligned(8)));
109 inline size_t size() const { return sizeof(Key); } in size()