Home
last modified time | relevance | path

Searched refs:excludedDeviceNames (Results 1 – 4 of 4) sorted by relevance

/aosp12/frameworks/native/services/inputflinger/reader/
H A DInputReader.cpp348 mEventHub->setExcludedDevices(mConfig.excludedDeviceNames); in refreshConfigurationLocked()
822 for (size_t i = 0; i < mConfig.excludedDeviceNames.size(); i++) { in dump()
826 dump += mConfig.excludedDeviceNames[i]; in dump()
/aosp12/frameworks/native/services/inputflinger/include/
H A DInputReaderBase.h195 std::vector<std::string> excludedDeviceNames; member
/aosp12/frameworks/base/services/core/jni/
H A Dcom_android_server_input_InputManagerService.cpp547 outConfig->excludedDeviceNames.clear(); in getReaderConfiguration()
548 jobjectArray excludedDeviceNames = jobjectArray(env->CallStaticObjectMethod( in getReaderConfiguration() local
550 if (!checkAndClearExceptionFromCallback(env, "getExcludedDeviceNames") && excludedDeviceNames) { in getReaderConfiguration()
551 jsize length = env->GetArrayLength(excludedDeviceNames); in getReaderConfiguration()
553 std::string deviceName = getStringElementFromJavaArray(env, excludedDeviceNames, i); in getReaderConfiguration()
554 outConfig->excludedDeviceNames.push_back(deviceName); in getReaderConfiguration()
556 env->DeleteLocalRef(excludedDeviceNames); in getReaderConfiguration()
/aosp12/frameworks/native/services/inputflinger/tests/
H A DInputReader_test.cpp278 mConfig.excludedDeviceNames.push_back(deviceName); in addExcludedDeviceName()