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

  /hardware/libhardware/modules/sensors/dynamic_sensor/
HidRawDevice.cpp 259 bool HidRawDevice::sendReport(uint8_t id, std::vector<uint8_t> &data) {
266 LOG_E << "HidRawDevice::sendReport: unknown output " << id << LOG_ENDL;
272 LOG_E << "HidRawDevice::sendReport: send report " << id << " size mismatch, need "
290 LOG_E << "HidRawDevice::sendReport: output " << id << " write returns " << res
  /hardware/libhardware/modules/sensors/dynamic_sensor/test/
HidRawSensorTest.cpp 78 virtual bool sendReport(uint8_t id, std::vector<uint8_t> &data) {
  /frameworks/base/cmds/hid/jni/
com_android_commands_hid_Device.cpp 141 void Device::sendReport(uint8_t* report, size_t reportSize) {
205 static void sendReport(JNIEnv* env, jclass /* clazz */, jlong ptr,jbyteArray rawReport) {
210 d->sendReport(report.get(), size);
226 { "nativeSendReport", "(J[B)V", reinterpret_cast<void*>(sendReport) },
  /frameworks/base/cmds/hid/src/com/android/commands/hid/
Device.java 80 public void sendReport(byte[] report) {
  /frameworks/base/core/java/android/bluetooth/
BluetoothInputHost.java 421 public boolean sendReport(BluetoothDevice device, int id, byte[] data) {
426 result = mService.sendReport(device, id, data);
  /packages/apps/Bluetooth/src/com/android/bluetooth/hid/
HidDevService.java 297 public boolean sendReport(BluetoothDevice device, int id, byte[] data) {
298 if (DBG) Log.v(TAG, "sendReport(): device=" + device + " id=" + id);
305 return service.sendReport(device, id, data);
447 synchronized boolean sendReport(BluetoothDevice device, int id, byte[] data) {
448 if (DBG) Log.v(TAG, "sendReport(): device=" + device + " id=" + id);

Completed in 356 milliseconds