Searched defs:inputDevices (Results 1 - 6 of 6) sorted by relevance

/frameworks/av/services/audiopolicy/engineconfigurable/wrapper/
H A DParameterManagerWrapper.cpp407 status_t ParameterManagerWrapper::setAvailableInputDevices(audio_devices_t inputDevices) argument
415 criterion->setCriterionState(inputDevices & ~AUDIO_DEVICE_BIT_IN);
/frameworks/base/services/core/jni/
H A Dcom_android_server_input_InputManagerService.cpp215 virtual void notifyInputDevicesChanged(const Vector<InputDeviceInfo>& inputDevices);
500 void NativeInputManager::notifyInputDevicesChanged(const Vector<InputDeviceInfo>& inputDevices) { argument
503 size_t count = inputDevices.size();
509 jobject inputDeviceObj = android_view_InputDevice_create(env, inputDevices.itemAt(i));
/frameworks/av/services/audiopolicy/managerdefault/
H A DAudioPolicyManager.cpp3303 DeviceVector inputDevices = mAvailableInputDevices.getDevicesFromType(profileType); local
3305 String8 address = inputDevices.size() > 0 ? inputDevices.itemAt(0)->mAddress
3308 ALOGE_IF(inputDevices.size() == 0, "Input device list is empty!");
/frameworks/base/services/core/java/com/android/server/input/
H A DInputManagerService.java1013 private static boolean containsInputDeviceWithDescriptor(InputDevice[] inputDevices, argument
1015 final int numDevices = inputDevices.length;
1017 final InputDevice inputDevice = inputDevices[i];
1785 private void notifyInputDevicesChanged(InputDevice[] inputDevices) { argument
1793 mInputDevices = inputDevices;
/frameworks/native/services/inputflinger/tests/
H A DInputReader_test.cpp194 virtual void notifyInputDevicesChanged(const Vector<InputDeviceInfo>& inputDevices) { argument
195 mInputDevices = inputDevices;
1033 Vector<InputDeviceInfo> inputDevices; local
1034 mReader->getInputDevices(inputDevices);
1036 ASSERT_EQ(1U, inputDevices.size());
1037 ASSERT_EQ(1, inputDevices[0].getId());
1038 ASSERT_STREQ("keyboard", inputDevices[0].getIdentifier().name.string());
1039 ASSERT_EQ(AINPUT_KEYBOARD_TYPE_NON_ALPHABETIC, inputDevices[0].getKeyboardType());
1040 ASSERT_EQ(AINPUT_SOURCE_KEYBOARD, inputDevices[0].getSources());
1041 ASSERT_EQ(size_t(0), inputDevices[
[all...]
/frameworks/native/services/inputflinger/
H A DInputReader.cpp276 Vector<InputDeviceInfo> inputDevices; local
317 getInputDevicesLocked(inputDevices);
323 mPolicy->notifyInputDevicesChanged(inputDevices);

Completed in 1815 milliseconds