Home
last modified time | relevance | path

Searched refs:inputDevices (Results 1 – 8 of 8) sorted by relevance

/frameworks/av/services/audiopolicy/engineconfigurable/wrapper/include/
DParameterManagerWrapper.h112 status_t setAvailableInputDevices(audio_devices_t inputDevices);
/frameworks/av/services/audiopolicy/engineconfigurable/wrapper/
DParameterManagerWrapper.cpp407 status_t ParameterManagerWrapper::setAvailableInputDevices(audio_devices_t inputDevices) in setAvailableInputDevices() argument
415 criterion->setCriterionState(inputDevices & ~AUDIO_DEVICE_BIT_IN); in setAvailableInputDevices()
/frameworks/av/services/audiopolicy/managerdefault/
DAudioPolicyManager.cpp1508 DeviceVector inputDevices; in getInputForAttr() local
1555 inputDevices = mAvailableInputDevices.getDevicesFromType(inputDesc->mDevice); in getInputForAttr()
1556 *selectedDeviceId = inputDevices.size() > 0 ? inputDevices.itemAt(0)->getId() in getInputForAttr()
1625 inputDevices = mAvailableInputDevices.getDevicesFromType(device); in getInputForAttr()
1626 *selectedDeviceId = inputDevices.size() > 0 ? inputDevices.itemAt(0)->getId() in getInputForAttr()
1786 DeviceVector inputDevices = mAvailableInputDevices.getDevicesFromType(device); in getInputForDevice() local
1788 address = inputDevices.size() > 0 ? inputDevices.itemAt(0)->mAddress : String8(""); in getInputForDevice()
3757 DeviceVector inputDevices = mAvailableInputDevices.getDevicesFromType(profileType); in AudioPolicyManager() local
3759 String8 address = inputDevices.size() > 0 ? inputDevices.itemAt(0)->mAddress in AudioPolicyManager()
3762 ALOGE_IF(inputDevices.size() == 0, "Input device list is empty!"); in AudioPolicyManager()
/frameworks/base/services/core/java/com/android/server/input/
DInputManagerService.java1073 private static boolean containsInputDeviceWithDescriptor(InputDevice[] inputDevices, in containsInputDeviceWithDescriptor() argument
1075 final int numDevices = inputDevices.length; in containsInputDeviceWithDescriptor()
1077 final InputDevice inputDevice = inputDevices[i]; in containsInputDeviceWithDescriptor()
1897 private void notifyInputDevicesChanged(InputDevice[] inputDevices) { in notifyInputDevicesChanged() argument
1905 mInputDevices = inputDevices; in notifyInputDevicesChanged()
/frameworks/native/services/inputflinger/tests/
DInputReader_test.cpp234 virtual void notifyInputDevicesChanged(const Vector<InputDeviceInfo>& inputDevices) { in notifyInputDevicesChanged() argument
235 mInputDevices = inputDevices; in notifyInputDevicesChanged()
1149 Vector<InputDeviceInfo> inputDevices; in TEST_F() local
1150 mReader->getInputDevices(inputDevices); in TEST_F()
1152 ASSERT_EQ(1U, inputDevices.size()); in TEST_F()
1153 ASSERT_EQ(1, inputDevices[0].getId()); in TEST_F()
1154 ASSERT_STREQ("keyboard", inputDevices[0].getIdentifier().name.string()); in TEST_F()
1155 ASSERT_EQ(AINPUT_KEYBOARD_TYPE_NON_ALPHABETIC, inputDevices[0].getKeyboardType()); in TEST_F()
1156 ASSERT_EQ(AINPUT_SOURCE_KEYBOARD, inputDevices[0].getSources()); in TEST_F()
1157 ASSERT_EQ(size_t(0), inputDevices[0].getMotionRanges().size()); in TEST_F()
[all …]
/frameworks/base/services/core/jni/
Dcom_android_server_input_InputManagerService.cpp228 virtual void notifyInputDevicesChanged(const Vector<InputDeviceInfo>& inputDevices);
569 void NativeInputManager::notifyInputDevicesChanged(const Vector<InputDeviceInfo>& inputDevices) { in notifyInputDevicesChanged() argument
573 size_t count = inputDevices.size(); in notifyInputDevicesChanged()
579 jobject inputDeviceObj = android_view_InputDevice_create(env, inputDevices.itemAt(i)); in notifyInputDevicesChanged()
/frameworks/native/services/inputflinger/
DInputReader.h270 virtual void notifyInputDevicesChanged(const Vector<InputDeviceInfo>& inputDevices) = 0;
DInputReader.cpp358 Vector<InputDeviceInfo> inputDevices; in loopOnce() local
399 getInputDevicesLocked(inputDevices); in loopOnce()
405 mPolicy->notifyInputDevicesChanged(inputDevices); in loopOnce()