Home
last modified time | relevance | path

Searched refs:sendReport (Results 1 – 6 of 6) sorted by relevance

/frameworks/base/cmds/hid/jni/
Dcom_android_commands_hid_Device.cpp141 void Device::sendReport(uint8_t* report, size_t reportSize) { in sendReport() function in android::uhid::Device
205 static void sendReport(JNIEnv* env, jclass /* clazz */, jlong ptr,jbyteArray rawReport) { in sendReport() function
210 d->sendReport(report.get(), size); in sendReport()
226 { "nativeSendReport", "(J[B)V", reinterpret_cast<void*>(sendReport) },
Dcom_android_commands_hid_Device.h47 void sendReport(uint8_t* report, size_t reportSize);
/frameworks/base/core/java/android/bluetooth/
DIBluetoothInputHost.aidl31 boolean sendReport(in BluetoothDevice device, in int id, in byte[] data); in sendReport() method
DBluetoothInputHost.java421 public boolean sendReport(BluetoothDevice device, int id, byte[] data) { in sendReport() method in BluetoothInputHost
426 result = mService.sendReport(device, id, data); in sendReport()
/frameworks/base/cmds/hid/src/com/android/commands/hid/
DHid.java102 d.sendReport(e.getReport()); in process()
DDevice.java80 public void sendReport(byte[] report) { in sendReport() method in Device