Searched refs:updateMetaState (Results 1 - 6 of 6) sorted by relevance

/frameworks/native/include/input/
H A DKeyboard.h88 extern int32_t updateMetaState(int32_t keyCode, bool down, int32_t oldMetaState);
/frameworks/base/services/accessibility/java/com/android/server/accessibility/
H A DAutoclickController.java100 mClickScheduler.updateMetaState(event.getMetaState());
334 public void updateMetaState(int state) { method in class:AutoclickController.ClickScheduler
/frameworks/native/libs/input/
H A DKeyboard.cpp210 int32_t updateMetaState(int32_t keyCode, bool down, int32_t oldMetaState) { function in namespace:android
H A DKeyCharacterMap.cpp565 *currentMetaState = updateMetaState(keyCode, down, *currentMetaState);
595 *currentMetaState = updateMetaState(keyCode, true, *currentMetaState);
597 *currentMetaState = updateMetaState(keyCode, false, *currentMetaState);
/frameworks/native/services/inputflinger/
H A DInputReader.h624 void updateMetaState(int32_t keyCode);
1040 virtual void updateMetaState(int32_t keyCode);
1126 virtual void updateMetaState(int32_t keyCode);
H A DInputReader.cpp712 device->updateMetaState(AKEYCODE_CAPS_LOCK);
1190 void InputDevice::updateMetaState(int32_t keyCode) { function in class:android::InputDevice
1193 mMappers[i]->updateMetaState(keyCode);
1905 void InputMapper::updateMetaState(int32_t keyCode) { function in class:android::InputMapper
2353 void KeyboardInputMapper::updateMetaState(int32_t keyCode) { function in class:android::KeyboardInputMapper
2359 int32_t newMetaState = android::updateMetaState(keyCode, down, oldMetaState);

Completed in 1444 milliseconds