HomeSort by relevance Sort by last modified time
    Searched defs:inputDevices (Results 1 - 6 of 6) sorted by null

  /packages/apps/TvSettings/Settings/src/com/android/tv/settings/accessories/
BluetoothInputDeviceConnector.java 93 int[] inputDevices = inputManager.getInputDeviceIds();
BluetoothDevicePairer.java 208 int[] inputDevices = inMan.getInputDeviceIds();
210 return hasValidInputDevice(context, inputDevices);
517 List<BluetoothDevice> inputDevices = new ArrayList<>();
520 inputDevices.add(device);
523 if (inputDevices.size() == 1) {
524 return inputDevices.get(0);
  /packages/apps/Bluetooth/src/com/android/bluetooth/hid/
HidService.java 430 List<BluetoothDevice> inputDevices = new ArrayList<BluetoothDevice>();
436 inputDevices.add(device);
441 return inputDevices;
  /frameworks/av/services/audiopolicy/managerdefault/
AudioPolicyManager.cpp     [all...]
  /frameworks/native/services/inputflinger/tests/
InputReader_test.cpp 194 virtual void notifyInputDevicesChanged(const Vector<InputDeviceInfo>& inputDevices) {
195 mInputDevices = inputDevices;
1033 Vector<InputDeviceInfo> inputDevices;
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[0].getMotionRanges().size())
    [all...]
  /frameworks/native/services/inputflinger/
InputReader.cpp 284 Vector<InputDeviceInfo> inputDevices;
325 getInputDevicesLocked(inputDevices);
331 mPolicy->notifyInputDevicesChanged(inputDevices);
    [all...]

Completed in 331 milliseconds