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.cpp460 if (device && device->hasValidFd() && device->keyMap.haveKeyLayout()) { in getKeyCodeState()
462 device->keyMap.keyLayoutMap->findScanCodesForKey(keyCode, &scanCodes); in getKeyCodeState()
523 if (device && device->keyMap.haveKeyLayout()) { in markSupportedKeyCodes()
528 status_t err = device->keyMap.keyLayoutMap->findScanCodesForKey(keyCodes[codeIndex], in markSupportedKeyCodes()
563 if (status != NO_ERROR && device->keyMap.haveKeyLayout()) { in mapKey()
564 if (!device->keyMap.keyLayoutMap->mapKey(scanCode, usageCode, outKeycode, outFlags)) { in mapKey()
591 if (device && device->keyMap.haveKeyLayout()) { in mapAxis()
592 status_t err = device->keyMap.keyLayoutMap->mapAxis(scanCode, outAxisInfo); in mapAxis()
681 device->combinedKeyMap = KeyCharacterMap::combine(device->keyMap.keyCharacterMap, map); in setKeyboardLayoutOverlay()
1420 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.java1924 Map<String, Long> keyMap = new HashMap<String, Long>(); in getKeyMap() local
1931 return keyMap; in getKeyMap()
1935 return keyMap; in getKeyMap()
1947 return keyMap; in getKeyMap()
1955 return keyMap; in getKeyMap()
1978 keyMap.put(key, connectionTime); in getKeyMap()
1987 return keyMap; in getKeyMap()
1996 Map<String, Long> keyMap = new HashMap<String, Long>(); in getKeyMapBeforeKeystoreVersion() local
2003 return keyMap; in getKeyMapBeforeKeystoreVersion()
2007 return keyMap; in getKeyMapBeforeKeystoreVersion()
[all …]
/frameworks/av/media/codec2/sfplugin/
DReflectedParamUpdater.cpp259 std::set<std::string> keyMap(keys.begin(), keys.end()); in getParamIndicesForKeys() local
262 keyMap.size(), mMap.size()); in getParamIndicesForKeys()
266 ALOGV("count of %s is %zu", name.c_str(), keyMap.count(name)); in getParamIndicesForKeys()
267 if (keyMap.count(name) > 0) { in getParamIndicesForKeys()
/frameworks/native/services/inputflinger/reader/include/
DEventHub.h346 KeyMap keyMap; member
372 return keyMap.keyCharacterMap; in getKeyCharacterMap()