Home
last modified time | relevance | path

Searched refs:sendReport (Results 1 – 4 of 4) 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/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