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

  /packages/apps/Bluetooth/src/com/android/bluetooth/hid/
HidService.java 413 List<BluetoothDevice> inputDevices = new ArrayList<BluetoothDevice>();
419 inputDevices.add(device);
424 return inputDevices;
  /frameworks/base/services/java/com/android/server/input/
InputManagerService.java 756 private static boolean containsInputDeviceWithDescriptor(InputDevice[] inputDevices,
758 final int numDevices = inputDevices.length;
760 final InputDevice inputDevice = inputDevices[i];
    [all...]
  /frameworks/base/services/input/tests/
InputReader_test.cpp 185 virtual void notifyInputDevicesChanged(const Vector<InputDeviceInfo>& inputDevices) {
186 mInputDevices = inputDevices;
1015 Vector<InputDeviceInfo> inputDevices;
1016 mReader->getInputDevices(inputDevices);
1018 ASSERT_EQ(1U, inputDevices.size());
1019 ASSERT_EQ(1, inputDevices[0].getId());
1020 ASSERT_STREQ("keyboard", inputDevices[0].getIdentifier().name.string());
1021 ASSERT_EQ(AINPUT_KEYBOARD_TYPE_NON_ALPHABETIC, inputDevices[0].getKeyboardType());
1022 ASSERT_EQ(AINPUT_SOURCE_KEYBOARD, inputDevices[0].getSources());
1023 ASSERT_EQ(size_t(0), inputDevices[0].getMotionRanges().size())
    [all...]
  /frameworks/base/services/jni/
com_android_server_input_InputManagerService.cpp 185 virtual void notifyInputDevicesChanged(const Vector<InputDeviceInfo>& inputDevices);
464 void NativeInputManager::notifyInputDevicesChanged(const Vector<InputDeviceInfo>& inputDevices) {
467 size_t count = inputDevices.size();
473 jobject inputDeviceObj = android_view_InputDevice_create(env, inputDevices.itemAt(i));
    [all...]
  /frameworks/base/services/input/
InputReader.h 281 virtual void notifyInputDevicesChanged(const Vector<InputDeviceInfo>& inputDevices) = 0;
    [all...]
InputReader.cpp 250 Vector<InputDeviceInfo> inputDevices;
291 getInputDevicesLocked(inputDevices);
297 mPolicy->notifyInputDevicesChanged(inputDevices);
    [all...]

Completed in 1008 milliseconds