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

  /packages/apps/Bluetooth/tests/unit/src/com/android/bluetooth/hid/
HidDeviceTest.java 76 @Mock private HidDeviceNativeInterface mHidDeviceNativeInterface;
110 setHidDeviceNativeInterfaceInstance(mHidDeviceNativeInterface);
123 Field field = HidDeviceService.class.getDeclaredField("mHidDeviceNativeInterface");
127 Assert.assertEquals(nativeInterface, mHidDeviceNativeInterface);
138 reset(mHidDeviceNativeInterface, mAdapterService);
275 doReturn(true).when(mHidDeviceNativeInterface)
279 verify(mHidDeviceNativeInterface, never()).registerApp(anyString(), anyString(),
286 verify(mHidDeviceNativeInterface).registerApp(anyString(), anyString(), anyString(),
294 doReturn(true).when(mHidDeviceNativeInterface).unregisterApp();
297 verify(mHidDeviceNativeInterface).unregisterApp()
    [all...]
  /packages/apps/Bluetooth/src/com/android/bluetooth/hid/
HidDeviceService.java 68 private HidDeviceNativeInterface mHidDeviceNativeInterface;
512 return mHidDeviceNativeInterface.registerApp(
557 return mHidDeviceNativeInterface.unregisterApp();
572 && mHidDeviceNativeInterface.sendReport(id, data);
582 && mHidDeviceNativeInterface.replyReport(type, id, data);
592 && mHidDeviceNativeInterface.unplug();
601 return checkCallingUid() && mHidDeviceNativeInterface.connect(device);
615 return checkDevice(device) && mHidDeviceNativeInterface.disconnect();
625 && mHidDeviceNativeInterface.reportError(error);
644 mHidDeviceNativeInterface = HidDeviceNativeInterface.getInstance()
    [all...]

Completed in 134 milliseconds