Searched refs:outKeyCode (Results 1 – 4 of 4) sorted by relevance
/aosp12/frameworks/native/include/input/ |
H A D | KeyCharacterMap.h | 130 status_t mapKey(int32_t scanCode, int32_t usageCode, int32_t* outKeyCode) const; 135 int32_t* outKeyCode, int32_t* outMetaState) const; 247 bool findKey(char16_t ch, int32_t* outKeyCode, int32_t* outMetaState) const;
|
H A D | KeyLayoutMap.h | 74 int32_t* outKeyCode, uint32_t* outFlags) const;
|
/aosp12/frameworks/native/libs/input/ |
H A D | KeyCharacterMap.cpp | 409 *outKeyCode = mKeysByUsageCode.valueAt(index); in mapKey() 412 scanCode, usageCode, *outKeyCode); in mapKey() 420 *outKeyCode = mKeysByScanCode.valueAt(index); in mapKey() 423 scanCode, usageCode, *outKeyCode); in mapKey() 432 *outKeyCode = AKEYCODE_UNKNOWN; in mapKey() 437 int32_t *outKeyCode, int32_t *outMetaState) const { in tryRemapKey() argument 438 *outKeyCode = keyCode; in tryRemapKey() 445 *outKeyCode = behavior->replacementKeyCode; in tryRemapKey() 474 keyCode, metaState, *outKeyCode, *outMetaState); in tryRemapKey() 535 bool KeyCharacterMap::findKey(char16_t ch, int32_t* outKeyCode, int32_t* outMetaState) const { in findKey() argument [all …]
|
H A D | KeyLayoutMap.cpp | 130 int32_t* outKeyCode, uint32_t* outFlags) const { in mapKey() argument 136 *outKeyCode = AKEYCODE_UNKNOWN; in mapKey() 141 *outKeyCode = key->keyCode; in mapKey() 146 scanCode, usageCode, *outKeyCode, *outFlags); in mapKey()
|