Searched refs:updateMetaState (Results 1 – 11 of 11) sorted by relevance
/frameworks/native/include/input/ |
D | Keyboard.h | 78 extern int32_t updateMetaState(int32_t keyCode, bool down, int32_t oldMetaState);
|
/frameworks/native/services/inputflinger/reader/mapper/ |
D | InputMapper.h | 70 virtual void updateMetaState(int32_t keyCode);
|
D | InputMapper.cpp | 70 void InputMapper::updateMetaState(int32_t keyCode) {} in updateMetaState() function in android::InputMapper
|
D | KeyboardInputMapper.h | 43 virtual void updateMetaState(int32_t keyCode) override;
|
D | KeyboardInputMapper.cpp | 384 void KeyboardInputMapper::updateMetaState(int32_t keyCode) { in updateMetaState() function in android::KeyboardInputMapper 390 int32_t newMetaState = android::updateMetaState(keyCode, down, oldMetaState); in updateMetaStateIfNeeded()
|
/frameworks/base/services/accessibility/java/com/android/server/accessibility/ |
D | AutoclickController.java | 94 mClickScheduler.updateMetaState(event.getMetaState()); in onKeyEvent() 312 public void updateMetaState(int state) { in updateMetaState() method in AutoclickController.ClickScheduler
|
/frameworks/native/services/inputflinger/reader/ |
D | InputDevice.cpp | 448 void InputDevice::updateMetaState(int32_t keyCode) { in updateMetaState() function in android::InputDevice 449 for_each_mapper([keyCode](InputMapper& mapper) { mapper.updateMetaState(keyCode); }); in updateMetaState()
|
D | InputReader.cpp | 517 device->updateMetaState(AKEYCODE_CAPS_LOCK); in toggleCapsLockState()
|
/frameworks/native/libs/input/ |
D | Keyboard.cpp | 220 int32_t updateMetaState(int32_t keyCode, bool down, int32_t oldMetaState) { in updateMetaState() function
|
D | KeyCharacterMap.cpp | 565 *currentMetaState = updateMetaState(keyCode, down, *currentMetaState); in addSingleEphemeralMetaKey() 595 *currentMetaState = updateMetaState(keyCode, true, *currentMetaState); in addLockedMetaKey() 597 *currentMetaState = updateMetaState(keyCode, false, *currentMetaState); in addLockedMetaKey()
|
/frameworks/native/services/inputflinger/reader/include/ |
D | InputDevice.h | 89 void updateMetaState(int32_t keyCode);
|