Searched refs:outKeyCode (Results 1 – 5 of 5) sorted by relevance
| /frameworks/native/include/input/ |
| D | KeyCharacterMap.h | 137 status_t mapKey(int32_t scanCode, int32_t usageCode, int32_t* outKeyCode) const; 246 bool findKey(char16_t ch, int32_t* outKeyCode, int32_t* outMetaState) const;
|
| D | KeyLayoutMap.h | 72 int32_t* outKeyCode, uint32_t* outFlags) const;
|
| /frameworks/native/libs/input/ |
| D | KeyCharacterMap.cpp | 338 status_t KeyCharacterMap::mapKey(int32_t scanCode, int32_t usageCode, int32_t* outKeyCode) const { in mapKey() 342 *outKeyCode = it->second; in mapKey() 345 scanCode, usageCode, *outKeyCode); in mapKey() 353 *outKeyCode = it->second; in mapKey() 356 scanCode, usageCode, *outKeyCode); in mapKey() 365 *outKeyCode = AKEYCODE_UNKNOWN; in mapKey() 476 bool KeyCharacterMap::findKey(char16_t ch, int32_t* outKeyCode, int32_t* outMetaState) const { in findKey() argument 491 *outKeyCode = keyCode; in findKey()
|
| D | KeyLayoutMap.cpp | 191 int32_t* outKeyCode, uint32_t* outFlags) const { in mapKey() argument 196 *outKeyCode = AKEYCODE_UNKNOWN; in mapKey() 201 *outKeyCode = key->keyCode; in mapKey() 206 scanCode, usageCode, *outKeyCode, *outFlags); in mapKey()
|
| /frameworks/native/services/inputflinger/reader/ |
| D | EventHub.cpp | 1019 int32_t outKeyCode; in getKeyCodeForKeyLocation() local 1021 device->getKeyCharacterMap()->mapKey(scanCodes[0], /*usageCode=*/0, &outKeyCode); in getKeyCodeForKeyLocation() 1027 outKeyCode = locationKeyCode; in getKeyCodeForKeyLocation() 1032 outKeyCode = AKEYCODE_UNKNOWN; in getKeyCodeForKeyLocation() 1036 return device->getKeyCharacterMap()->applyKeyRemapping(outKeyCode); in getKeyCodeForKeyLocation()
|