Home
last modified time | relevance | path

Searched refs:addKeyRemapping (Results 1 – 18 of 18) sorted by relevance

/frameworks/base/services/core/java/com/android/server/input/
DKeyRemapper.java94 private void addKeyRemapping(int fromKey, int toKey) { in addKeyRemapping() method in KeyRemapper
100 mNative.addKeyRemapping(deviceId, fromKey, toKey); in addKeyRemapping()
106 addKeyRemapping(fromKey, toKey); in remapKeyInternal()
128 addKeyRemapping(fromKey, fromKey); in clearAllRemappingsInternal()
147 (fromKey, toKey) -> mNative.addKeyRemapping(deviceId, fromKey, toKey)); in onInputDeviceAdded()
DNativeInputManagerService.java51 void addKeyRemapping(int deviceId, int fromKeyCode, int toKeyCode); in addKeyRemapping() method
282 public native void addKeyRemapping(int deviceId, int fromKeyCode, int toKeyCode); in addKeyRemapping() method in NativeInputManagerService.NativeImpl
/frameworks/native/services/inputflinger/reader/include/
DInputDevice.h122 void addKeyRemapping(int32_t fromKeyCode, int32_t toKeyCode);
298 inline void addKeyRemapping(int32_t fromKeyCode, int32_t toKeyCode) const { in addKeyRemapping() function
299 mEventHub->addKeyRemapping(mId, fromKeyCode, toKeyCode); in addKeyRemapping()
DEventHub.h283 virtual void addKeyRemapping(int32_t deviceId, int32_t fromKeyCode,
488 void addKeyRemapping(int32_t deviceId, int32_t fromKeyCode,
DInputReader.h71 void addKeyRemapping(int32_t deviceId, int32_t fromKeyCode, int32_t toKeyCode) const override;
/frameworks/native/services/inputflinger/tests/fuzzers/
DInputReaderFuzzer.cpp156 void addKeyRemapping(int32_t deviceId, int32_t fromKeyCode, int32_t toKeyCode) const { in addKeyRemapping() function in android::FuzzInputReader
157 reader->addKeyRemapping(deviceId, fromKeyCode, toKeyCode); in addKeyRemapping()
DMapperHelpers.h178 void addKeyRemapping(int32_t deviceId, int32_t fromKeyCode, int32_t toKeyCode) const override {} in addKeyRemapping() function
/frameworks/native/include/input/
DKeyCharacterMap.h133 void addKeyRemapping(int32_t fromKeyCode, int32_t toKeyCode);
/frameworks/native/services/inputflinger/tests/
DInterfaceMocks.h68 MOCK_METHOD(void, addKeyRemapping, (int32_t deviceId, int fromKeyCode, int toKeyCode), (const));
DFakeEventHub.h133 void addKeyRemapping(int32_t deviceId, int32_t fromKeyCode, int32_t toKeyCode) const;
DFakeEventHub.cpp157 void FakeEventHub::addKeyRemapping(int32_t deviceId, int32_t fromKeyCode, int32_t toKeyCode) const { in addKeyRemapping() function in android::FakeEventHub
DInputReader_test.cpp3128 mFakeEventHub->addKeyRemapping(EVENTHUB_ID, AKEYCODE_A, AKEYCODE_B); in TEST_F()
/frameworks/native/services/inputflinger/include/
DInputReaderBase.h316 virtual void addKeyRemapping(int32_t deviceId, int32_t fromKeyCode,
/frameworks/native/services/inputflinger/reader/
DInputDevice.cpp647 void InputDevice::addKeyRemapping(int32_t fromKeyCode, int32_t toKeyCode) { in addKeyRemapping() function in android::InputDevice
649 context.addKeyRemapping(fromKeyCode, toKeyCode); in addKeyRemapping()
DInputReader.cpp648 void InputReader::addKeyRemapping(int32_t deviceId, int32_t fromKeyCode, int32_t toKeyCode) const { in addKeyRemapping() function in android::InputReader
653 device->addKeyRemapping(fromKeyCode, toKeyCode); in addKeyRemapping()
DEventHub.cpp1091 void EventHub::addKeyRemapping(int32_t deviceId, int32_t fromKeyCode, int32_t toKeyCode) const { in addKeyRemapping() function in android::EventHub
1099 kcm->addKeyRemapping(fromKeyCode, toKeyCode); in addKeyRemapping()
/frameworks/native/libs/input/
DKeyCharacterMap.cpp323 void KeyCharacterMap::addKeyRemapping(int32_t fromKeyCode, int32_t toKeyCode) { in addKeyRemapping() function in android::KeyCharacterMap
/frameworks/base/services/core/jni/
Dcom_android_server_input_InputManagerService.cpp1750 im->getInputManager()->getReader().addKeyRemapping(deviceId, fromKeyCode, toKeyCode); in nativeAddKeyRemapping()