Home
last modified time | relevance | path

Searched refs:keyMap (Results 1 – 6 of 6) sorted by relevance

/frameworks/native/libs/input/
DKeyboard.cpp161 const PropertyMap* deviceConfiguration, const KeyMap* keyMap) { in isEligibleBuiltInKeyboard() argument
163 if (!keyMap->haveKeyCharacterMap() || isKeyboardSpecialFunction(deviceConfiguration) in isEligibleBuiltInKeyboard()
164 || keyMap->keyCharacterMap->getKeyboardType() in isEligibleBuiltInKeyboard()
/frameworks/native/services/inputflinger/reader/
DEventHub.cpp438 if (device && device->hasValidFd() && device->keyMap.haveKeyLayout()) { in getKeyCodeState()
440 device->keyMap.keyLayoutMap->findScanCodesForKey(keyCode, &scanCodes); in getKeyCodeState()
501 if (device && device->keyMap.haveKeyLayout()) { in markSupportedKeyCodes()
506 status_t err = device->keyMap.keyLayoutMap->findScanCodesForKey(keyCodes[codeIndex], in markSupportedKeyCodes()
541 if (status != NO_ERROR && device->keyMap.haveKeyLayout()) { in mapKey()
542 if (!device->keyMap.keyLayoutMap->mapKey(scanCode, usageCode, outKeycode, outFlags)) { in mapKey()
569 if (device && device->keyMap.haveKeyLayout()) { in mapAxis()
570 status_t err = device->keyMap.keyLayoutMap->mapAxis(scanCode, outAxisInfo); in mapAxis()
659 device->combinedKeyMap = KeyCharacterMap::combine(device->keyMap.keyCharacterMap, map); in setKeyboardLayoutOverlay()
1400 isEligibleBuiltInKeyboard(device->identifier, device->configuration, &device->keyMap)) { in openDeviceLocked()
[all …]
/frameworks/native/include/input/
DKeyboard.h73 const PropertyMap* deviceConfiguration, const KeyMap* keyMap);
/frameworks/base/services/core/java/com/android/server/adb/
DAdbDebuggingManager.java1913 Map<String, Long> keyMap = new HashMap<String, Long>(); in getKeyMap() local
1920 return keyMap; in getKeyMap()
1924 return keyMap; in getKeyMap()
1936 return keyMap; in getKeyMap()
1944 return keyMap; in getKeyMap()
1967 keyMap.put(key, connectionTime); in getKeyMap()
1976 return keyMap; in getKeyMap()
1985 Map<String, Long> keyMap = new HashMap<String, Long>(); in getKeyMapBeforeKeystoreVersion() local
1992 return keyMap; in getKeyMapBeforeKeystoreVersion()
1996 return keyMap; in getKeyMapBeforeKeystoreVersion()
[all …]
/frameworks/av/media/codec2/sfplugin/
DReflectedParamUpdater.cpp271 std::set<std::string> keyMap(keys.begin(), keys.end()); in getParamIndicesForKeys() local
274 keyMap.size(), mMap.size()); in getParamIndicesForKeys()
278 ALOGV("count of %s is %zu", name.c_str(), keyMap.count(name)); in getParamIndicesForKeys()
279 if (keyMap.count(name) > 0) { in getParamIndicesForKeys()
/frameworks/native/services/inputflinger/reader/include/
DEventHub.h345 KeyMap keyMap; member
371 return keyMap.keyCharacterMap; in getKeyCharacterMap()