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