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

/frameworks/base/services/core/java/com/android/server/input/
H A DInputManagerService.java842 private static boolean containsInputDeviceWithDescriptor(InputDevice[] inputDevices, argument
844 final int numDevices = inputDevices.length;
846 final InputDevice inputDevice = inputDevices[i];
1389 private void notifyInputDevicesChanged(InputDevice[] inputDevices) { argument
1397 mInputDevices = inputDevices;
/frameworks/native/services/inputflinger/tests/
H A DInputReader_test.cpp194 virtual void notifyInputDevicesChanged(const Vector<InputDeviceInfo>& inputDevices) { argument
195 mInputDevices = inputDevices;
1029 Vector<InputDeviceInfo> inputDevices; local
1030 mReader->getInputDevices(inputDevices);
1032 ASSERT_EQ(1U, inputDevices.size());
1033 ASSERT_EQ(1, inputDevices[0].getId());
1034 ASSERT_STREQ("keyboard", inputDevices[0].getIdentifier().name.string());
1035 ASSERT_EQ(AINPUT_KEYBOARD_TYPE_NON_ALPHABETIC, inputDevices[0].getKeyboardType());
1036 ASSERT_EQ(AINPUT_SOURCE_KEYBOARD, inputDevices[0].getSources());
1037 ASSERT_EQ(size_t(0), inputDevices[
[all...]
/frameworks/base/services/core/jni/
H A Dcom_android_server_input_InputManagerService.cpp207 virtual void notifyInputDevicesChanged(const Vector<InputDeviceInfo>& inputDevices);
503 void NativeInputManager::notifyInputDevicesChanged(const Vector<InputDeviceInfo>& inputDevices) { argument
506 size_t count = inputDevices.size();
512 jobject inputDeviceObj = android_view_InputDevice_create(env, inputDevices.itemAt(i));
/frameworks/av/services/audiopolicy/managerdefault/
H A DAudioPolicyManager.cpp2833 DeviceVector inputDevices = mAvailableInputDevices.getDevicesFromType(profileType); local
2835 String8 address = inputDevices.size() > 0 ? inputDevices.itemAt(0)->mAddress
2838 ALOGE_IF(inputDevices.size() == 0, "Input device list is empty!");
/frameworks/native/services/inputflinger/
H A DInputReader.h311 virtual void notifyInputDevicesChanged(const Vector<InputDeviceInfo>& inputDevices) = 0;
H A DInputReader.cpp276 Vector<InputDeviceInfo> inputDevices; local
317 getInputDevicesLocked(inputDevices);
323 mPolicy->notifyInputDevicesChanged(inputDevices);

Completed in 212 milliseconds