Home
last modified time | relevance | path

Searched refs:outMetaState (Results 1 – 7 of 7) sorted by relevance

/frameworks/native/include/input/
DKeyCharacterMap.h135 int32_t* outKeyCode, int32_t* outMetaState) const;
226 status_t parseModifier(const std::string& token, int32_t* outMetaState);
244 bool findKey(char16_t ch, int32_t* outKeyCode, int32_t* outMetaState) const;
DPropertyMap.h98 status_t parseModifier(const String8& token, int32_t* outMetaState);
/frameworks/native/libs/input/
DKeyCharacterMap.cpp393 int32_t *outKeyCode, int32_t *outMetaState) const { in tryRemapKey()
395 *outMetaState = metaState; in tryRemapKey()
423 *outMetaState = normalizeMetaState(newMetaState); in tryRemapKey()
430 keyCode, metaState, *outKeyCode, *outMetaState); in tryRemapKey()
491 bool KeyCharacterMap::findKey(char16_t ch, int32_t* outKeyCode, int32_t* outMetaState) const { in findKey()
509 *outMetaState = found->metaState; in findKey()
1177 status_t KeyCharacterMap::Parser::parseModifier(const std::string& token, int32_t* outMetaState) { in parseModifier() argument
1179 *outMetaState = 0; in parseModifier()
1216 *outMetaState = combinedMeta; in parseModifier()
/frameworks/native/services/inputflinger/reader/include/
DInputDevice.h273 int32_t* outKeycode, int32_t* outMetaState, uint32_t* outFlags) const { in mapKey() argument
274 return mEventHub->mapKey(mId, scanCode, usageCode, metaState, outKeycode, outMetaState, in mapKey()
DEventHub.h258 int32_t metaState, int32_t* outKeycode, int32_t* outMetaState,
453 int32_t* outKeycode, int32_t* outMetaState,
/frameworks/native/services/inputflinger/reader/
DEventHub.cpp922 int32_t* outKeycode, int32_t* outMetaState, uint32_t* outFlags) const { in mapKey() argument
946 kcm->tryRemapKey(*outKeycode, metaState, outKeycode, outMetaState); in mapKey()
948 *outMetaState = metaState; in mapKey()
956 *outMetaState = metaState; in mapKey()
/frameworks/native/services/inputflinger/tests/
DInputReader_test.cpp704 int32_t* outKeycode, int32_t* outMetaState, uint32_t* outFlags) const override { in mapKey() argument
715 if (outMetaState) { in mapKey()
716 *outMetaState = metaState; in mapKey()