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