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

  /system/bt/binder/android/bluetooth/
IBluetoothHidDevice.aidl 31 boolean replyReport(in BluetoothDevice device, in byte type, in byte id, in byte[] data);
  /packages/apps/Bluetooth/src/com/android/bluetooth/hid/
HidDeviceNativeInterface.java 136 public boolean replyReport(byte type, byte id, byte[] data) {
HidDeviceService.java 352 public boolean replyReport(BluetoothDevice device, byte type, byte id, byte[] data) {
354 Log.d(TAG, "replyReport(): device=" + device + " type=" + type + " id=" + id);
362 return service.replyReport(device, type, id, data);
575 synchronized boolean replyReport(BluetoothDevice device, byte type, byte id, byte[] data) {
578 Log.d(TAG, "replyReport(): device=" + device + " type=" + type + " id=" + id);
582 && mHidDeviceNativeInterface.replyReport(type, id, data);
  /packages/apps/Bluetooth/tests/unit/src/com/android/bluetooth/hid/
HidDeviceTest.java 340 * Test the logic in replyReport(). This should fail when the app is not registered.
345 .replyReport(anyByte(), anyByte(), any(byte[].class));
346 // replyReport() should fail without app registered
348 mHidDeviceService.replyReport(mTestDevice, SAMPLE_REPORT_TYPE, SAMPLE_REPORT_ID,
364 // replyReport() should work when app is registered
366 mHidDeviceService.replyReport(mTestDevice, SAMPLE_REPORT_TYPE, SAMPLE_REPORT_ID,
369 verify(mHidDeviceNativeInterface).replyReport(eq(SAMPLE_REPORT_TYPE), eq(SAMPLE_REPORT_ID),
  /frameworks/base/core/java/android/bluetooth/
BluetoothHidDevice.java 265 * application using {@link BluetoothHidDevice#replyReport(BluetoothDevice, byte, byte,
662 public boolean replyReport(BluetoothDevice device, byte type, byte id, byte[] data) {
668 result = service.replyReport(device, type, id, data);
  /cts/apps/CtsVerifier/src/com/android/cts/verifier/bluetooth/
HidDeviceActivity.java 231 if (mBluetoothHidDevice.replyReport(mHidHost, (byte) 0, (byte) 0,
  /external/sl4a/Common/src/com/googlecode/android_scripting/facade/bluetooth/
BluetoothHidDeviceFacade.java 445 return sHidDeviceProfile.replyReport(
  /prebuilts/misc/common/robolectric/android-all/
android-all-stubs.jar 
  /prebuilts/sdk/28/
android.jar 
  /prebuilts/sdk/current/
android.jar 
  /prebuilts/sdk/system_28/
android.jar 
  /prebuilts/sdk/system_current/
android.jar 

Completed in 152 milliseconds