Home
last modified time | relevance | path

Searched refs:fallbackKeyCode (Results 1 – 4 of 4) sorted by relevance

/frameworks/native/libs/input/
DKeyCharacterMap.cpp253 if (behavior->fallbackKeyCode) { in getFallbackAction()
254 outFallbackAction->keyCode = behavior->fallbackKeyCode; in getFallbackAction()
586 int32_t fallbackKeyCode = parcel->readInt32(); in readFromParcel() local
594 behavior->fallbackKeyCode = fallbackKeyCode; in readFromParcel()
626 parcel->writeInt32(behavior->fallbackKeyCode); in writeToParcel()
658 next(NULL), metaState(0), character(0), fallbackKeyCode(0) { in Behavior()
664 fallbackKeyCode(other.fallbackKeyCode) { in Behavior()
968 behavior.fallbackKeyCode = keyCode; in parseKeyProperty()
1020 newBehavior->metaState, newBehavior->character, newBehavior->fallbackKeyCode); in parseKeyProperty()
/frameworks/native/services/inputflinger/
DInputDispatcher.cpp3559 int32_t fallbackKeyCode = connection->inputState.getFallbackKey(originalKeyCode); in afterKeyEventLockedInterruptible() local
3568 if (fallbackKeyCode != -1) { in afterKeyEventLockedInterruptible()
3588 if (fallbackKeyCode != AKEYCODE_UNKNOWN) { in afterKeyEventLockedInterruptible()
3593 options.keyCode = fallbackKeyCode; in afterKeyEventLockedInterruptible()
3604 if (fallbackKeyCode == -1 && !initialDown) { in afterKeyEventLockedInterruptible()
3641 fallbackKeyCode = event.getKeyCode(); in afterKeyEventLockedInterruptible()
3643 fallbackKeyCode = AKEYCODE_UNKNOWN; in afterKeyEventLockedInterruptible()
3645 connection->inputState.setFallbackKey(originalKeyCode, fallbackKeyCode); in afterKeyEventLockedInterruptible()
3648 ALOG_ASSERT(fallbackKeyCode != -1); in afterKeyEventLockedInterruptible()
3653 if (fallbackKeyCode != AKEYCODE_UNKNOWN in afterKeyEventLockedInterruptible()
[all …]
DInputDispatcher.h731 void setFallbackKey(int32_t originalKeyCode, int32_t fallbackKeyCode);
/frameworks/native/include/input/
DKeyCharacterMap.h153 int32_t fallbackKeyCode; member