Home
last modified time | relevance | path

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

/frameworks/native/services/inputflinger/tests/fuzzers/
DKeyboardInputFuzzer.cpp98 mapper.markSupportedKeyCodes(fdp->ConsumeIntegral<uint32_t>(), keyCodes, in LLVMFuzzerTestOneInput()
DMultiTouchInputFuzzer.cpp119 mapper.markSupportedKeyCodes(fdp->ConsumeIntegral<uint32_t>(), keyCodes, in LLVMFuzzerTestOneInput()
DMapperHelpers.h216 bool markSupportedKeyCodes(int32_t deviceId, const std::vector<int32_t>& keyCodes, in markSupportedKeyCodes() function
/frameworks/native/services/inputflinger/reader/mapper/
DKeyboardInputMapper.cpp383 bool KeyboardInputMapper::markSupportedKeyCodes(uint32_t sourceMask, in markSupportedKeyCodes() function in android::KeyboardInputMapper
386 return getDeviceContext().markSupportedKeyCodes(keyCodes, outFlags); in markSupportedKeyCodes()
443 bool hasKeyLayout = getDeviceContext().markSupportedKeyCodes(keyCodes, flags.data()); in updateLedState()
DKeyboardInputMapper.h43 bool markSupportedKeyCodes(uint32_t sourceMask, const std::vector<int32_t>& keyCodes,
DInputMapper.cpp71 bool InputMapper::markSupportedKeyCodes(uint32_t sourceMask, const std::vector<int32_t>& keyCodes, in markSupportedKeyCodes() function in android::InputMapper
DInputMapper.h89 virtual bool markSupportedKeyCodes(uint32_t sourceMask, const std::vector<int32_t>& keyCodes,
DTouchInputMapper.h181 bool markSupportedKeyCodes(uint32_t sourceMask, const std::vector<int32_t>& keyCodes,
DTouchInputMapper.cpp3948 bool TouchInputMapper::markSupportedKeyCodes(uint32_t sourceMask, in markSupportedKeyCodes() function in android::TouchInputMapper
/frameworks/native/services/inputflinger/reader/include/
DInputDevice.h104 bool markSupportedKeyCodes(uint32_t sourceMask, const std::vector<int32_t>& keyCodes,
389 inline bool markSupportedKeyCodes(const std::vector<int32_t>& keyCodes, in markSupportedKeyCodes() function
391 return mEventHub->markSupportedKeyCodes(mId, keyCodes, outFlags); in markSupportedKeyCodes()
DEventHub.h353 virtual bool markSupportedKeyCodes(int32_t deviceId, const std::vector<int32_t>& keyCodes,
567 bool markSupportedKeyCodes(int32_t deviceId, const std::vector<int32_t>& keyCodes,
/frameworks/native/services/inputflinger/tests/
DInterfaceMocks.h141 MOCK_METHOD(bool, markSupportedKeyCodes,
DFakeEventHub.h194 bool markSupportedKeyCodes(int32_t deviceId, const std::vector<int32_t>& keyCodes,
DFakeEventHub.cpp476 bool FakeEventHub::markSupportedKeyCodes(int32_t deviceId, const std::vector<int32_t>& keyCodes, in markSupportedKeyCodes() function in android::FakeEventHub
DInputReader_test.cpp341 bool markSupportedKeyCodes(uint32_t, const std::vector<int32_t>& keyCodes, in markSupportedKeyCodes() function in android::FakeInputMapper
2687 ASSERT_FALSE(mDevice->markSupportedKeyCodes(AINPUT_SOURCE_KEYBOARD, keyCodes, flags)) in TEST_F()
2766 ASSERT_FALSE(mDevice->markSupportedKeyCodes(AINPUT_SOURCE_TRACKBALL, keyCodes, flags)) in TEST_F()
2773 ASSERT_TRUE(mDevice->markSupportedKeyCodes(AINPUT_SOURCE_KEYBOARD, keyCodes, flags)) in TEST_F()
3742 ASSERT_TRUE(mapper.markSupportedKeyCodes(AINPUT_SOURCE_ANY, {AKEYCODE_A, AKEYCODE_B}, flags)); in TEST_F()
4654 mapper.markSupportedKeyCodes(AINPUT_SOURCE_ANY, {AKEYCODE_HOME, AKEYCODE_A}, flags)); in TEST_F()
/frameworks/native/services/inputflinger/reader/
DInputDevice.cpp573 bool InputDevice::markSupportedKeyCodes(uint32_t sourceMask, const std::vector<int32_t>& keyCodes, in markSupportedKeyCodes() function in android::InputDevice
578 result |= mapper.markSupportedKeyCodes(sourceMask, keyCodes, outFlags); in markSupportedKeyCodes()
DInputReader.cpp622 result = device->markSupportedKeyCodes(sourceMask, keyCodes, outFlags); in markSupportedKeyCodesLocked()
628 result |= device->markSupportedKeyCodes(sourceMask, keyCodes, outFlags); in markSupportedKeyCodesLocked()
DEventHub.cpp1167 bool EventHub::markSupportedKeyCodes(int32_t deviceId, const std::vector<int32_t>& keyCodes, in markSupportedKeyCodes() function in android::EventHub