/frameworks/base/services/core/java/com/android/server/input/ |
D | KeyRemapper.java | 94 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()
|
D | NativeInputManagerService.java | 51 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/ |
D | InputDevice.h | 122 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()
|
D | EventHub.h | 283 virtual void addKeyRemapping(int32_t deviceId, int32_t fromKeyCode, 488 void addKeyRemapping(int32_t deviceId, int32_t fromKeyCode,
|
D | InputReader.h | 71 void addKeyRemapping(int32_t deviceId, int32_t fromKeyCode, int32_t toKeyCode) const override;
|
/frameworks/native/services/inputflinger/tests/fuzzers/ |
D | InputReaderFuzzer.cpp | 156 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()
|
D | MapperHelpers.h | 178 void addKeyRemapping(int32_t deviceId, int32_t fromKeyCode, int32_t toKeyCode) const override {} in addKeyRemapping() function
|
/frameworks/native/include/input/ |
D | KeyCharacterMap.h | 133 void addKeyRemapping(int32_t fromKeyCode, int32_t toKeyCode);
|
/frameworks/native/services/inputflinger/tests/ |
D | InterfaceMocks.h | 68 MOCK_METHOD(void, addKeyRemapping, (int32_t deviceId, int fromKeyCode, int toKeyCode), (const));
|
D | FakeEventHub.h | 133 void addKeyRemapping(int32_t deviceId, int32_t fromKeyCode, int32_t toKeyCode) const;
|
D | FakeEventHub.cpp | 157 void FakeEventHub::addKeyRemapping(int32_t deviceId, int32_t fromKeyCode, int32_t toKeyCode) const { in addKeyRemapping() function in android::FakeEventHub
|
D | InputReader_test.cpp | 3128 mFakeEventHub->addKeyRemapping(EVENTHUB_ID, AKEYCODE_A, AKEYCODE_B); in TEST_F()
|
/frameworks/native/services/inputflinger/include/ |
D | InputReaderBase.h | 316 virtual void addKeyRemapping(int32_t deviceId, int32_t fromKeyCode,
|
/frameworks/native/services/inputflinger/reader/ |
D | InputDevice.cpp | 647 void InputDevice::addKeyRemapping(int32_t fromKeyCode, int32_t toKeyCode) { in addKeyRemapping() function in android::InputDevice 649 context.addKeyRemapping(fromKeyCode, toKeyCode); in addKeyRemapping()
|
D | InputReader.cpp | 648 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()
|
D | EventHub.cpp | 1091 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/ |
D | KeyCharacterMap.cpp | 323 void KeyCharacterMap::addKeyRemapping(int32_t fromKeyCode, int32_t toKeyCode) { in addKeyRemapping() function in android::KeyCharacterMap
|
/frameworks/base/services/core/jni/ |
D | com_android_server_input_InputManagerService.cpp | 1750 im->getInputManager()->getReader().addKeyRemapping(deviceId, fromKeyCode, toKeyCode); in nativeAddKeyRemapping()
|