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

  /frameworks/base/core/java/android/server/
BluetoothInputProfileHandler.java 153 List<BluetoothDevice> inputDevices = new ArrayList<BluetoothDevice>();
159 inputDevices.add(device);
164 return inputDevices;
  /frameworks/base/services/input/
InputReader.cpp 266 Vector<InputDeviceInfo> inputDevices;
307 getInputDevicesLocked(inputDevices);
313 mPolicy->notifyInputDevicesChanged(inputDevices);
    [all...]
  /frameworks/base/services/input/tests/
InputReader_test.cpp 170 virtual void notifyInputDevicesChanged(const Vector<InputDeviceInfo>& inputDevices) {
171 mInputDevices = inputDevices;
993 Vector<InputDeviceInfo> inputDevices;
994 mReader->getInputDevices(inputDevices);
996 ASSERT_EQ(1U, inputDevices.size());
997 ASSERT_EQ(1, inputDevices[0].getId());
998 ASSERT_STREQ("keyboard", inputDevices[0].getIdentifier().name.string());
999 ASSERT_EQ(AINPUT_KEYBOARD_TYPE_NON_ALPHABETIC, inputDevices[0].getKeyboardType());
1000 ASSERT_EQ(AINPUT_SOURCE_KEYBOARD, inputDevices[0].getSources());
1001 ASSERT_EQ(size_t(0), inputDevices[0].getMotionRanges().size())
    [all...]

Completed in 177 milliseconds