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
309 public native void addKeyRemapping(int deviceId, int fromKeyCode, int toKeyCode); in addKeyRemapping() method in NativeInputManagerService.NativeImpl
/frameworks/native/services/inputflinger/reader/include/
DInputDevice.h127 void addKeyRemapping(int32_t fromKeyCode, int32_t toKeyCode);
331 inline void addKeyRemapping(int32_t fromKeyCode, int32_t toKeyCode) const { in addKeyRemapping() function
332 mEventHub->addKeyRemapping(mId, fromKeyCode, toKeyCode); in addKeyRemapping()
DInputReader.h68 void addKeyRemapping(int32_t deviceId, int32_t fromKeyCode, int32_t toKeyCode) const override;
DEventHub.h290 virtual void addKeyRemapping(int32_t deviceId, int32_t fromKeyCode,
523 void addKeyRemapping(int32_t deviceId, int32_t fromKeyCode,
/frameworks/native/services/inputflinger/tests/fuzzers/
DInputReaderFuzzer.cpp154 void addKeyRemapping(int32_t deviceId, int32_t fromKeyCode, int32_t toKeyCode) const { in addKeyRemapping() function in android::FuzzInputReader
155 reader->addKeyRemapping(deviceId, fromKeyCode, toKeyCode); in addKeyRemapping()
DMapperHelpers.h196 void addKeyRemapping(int32_t deviceId, int32_t fromKeyCode, int32_t toKeyCode) const override {} in addKeyRemapping() function
/frameworks/native/include/input/
DKeyCharacterMap.h131 void addKeyRemapping(int32_t fromKeyCode, int32_t toKeyCode);
/frameworks/native/services/inputflinger/include/
DInputReaderBase.h330 virtual void addKeyRemapping(int32_t deviceId, int32_t fromKeyCode,
/frameworks/native/services/inputflinger/tests/
DInterfaceMocks.h99 MOCK_METHOD(void, addKeyRemapping, (int32_t deviceId, int fromKeyCode, int toKeyCode), (const));
DFakeEventHub.h134 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.cpp3473 mFakeEventHub->addKeyRemapping(EVENTHUB_ID, AKEYCODE_A, AKEYCODE_B); in TEST_F()
/frameworks/native/services/inputflinger/reader/
DInputDevice.cpp692 void InputDevice::addKeyRemapping(int32_t fromKeyCode, int32_t toKeyCode) { in addKeyRemapping() function in android::InputDevice
694 context.addKeyRemapping(fromKeyCode, toKeyCode); in addKeyRemapping()
DInputReader.cpp635 void InputReader::addKeyRemapping(int32_t deviceId, int32_t fromKeyCode, int32_t toKeyCode) const { in addKeyRemapping() function in android::InputReader
640 device->addKeyRemapping(fromKeyCode, toKeyCode); in addKeyRemapping()
DEventHub.cpp1183 void EventHub::addKeyRemapping(int32_t deviceId, int32_t fromKeyCode, int32_t toKeyCode) const { in addKeyRemapping() function in android::EventHub
1191 kcm->addKeyRemapping(fromKeyCode, toKeyCode); in addKeyRemapping()
/frameworks/native/libs/input/
DKeyCharacterMap.cpp320 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.cpp1815 im->getInputManager()->getReader().addKeyRemapping(deviceId, fromKeyCode, toKeyCode); in nativeAddKeyRemapping()