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

  /frameworks/base/core/java/android/bluetooth/
IBluetoothInputDevice.aidl 50 boolean getReport(in BluetoothDevice device, byte reportType, byte reportId, int bufferSize);
BluetoothInputDevice.java 591 * @param reportId Report ID
597 public boolean getReport(BluetoothDevice device, byte reportType, byte reportId, int bufferSize) {
598 if (VDBG) log("getReport(" + device + "), reportType=" + reportType + " reportId=" + reportId + "bufferSize=" + bufferSize);
601 return mService.getReport(device, reportType, reportId, bufferSize);
  /frameworks/base/tests/AccessoryDisplay/sink/src/com/android/accessorydisplay/sink/
UsbHid.java 38 public Multitouch(int reportId, int maxContacts, int width, int height) {
39 mReportId = reportId;
  /hardware/libhardware/include/hardware/
bt_hh.h 169 bt_status_t (*get_report)(bt_bdaddr_t *bd_addr, bthh_report_type_t reportType, uint8_t reportId, int bufferSize);
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/ddk/
hidclass.h 157 UCHAR reportId;
  /packages/apps/Bluetooth/src/com/android/bluetooth/hid/
HidService.java 237 byte reportId = data.getByte(BluetoothInputDevice.EXTRA_REPORT_ID);
239 if(!getReportNative(Utils.getByteAddress(device), reportType, reportId, bufferSize)) {
378 public boolean getReport(BluetoothDevice device, byte reportType, byte reportId, int bufferSize) {
381 return service.getReport(device, reportType, reportId, bufferSize) ;
504 boolean getReport(BluetoothDevice device, byte reportType, byte reportId, int bufferSize) {
515 data.putByte(BluetoothInputDevice.EXTRA_REPORT_ID, reportId);
708 private native boolean getReportNative(byte[]btAddress, byte reportType, byte reportId, int bufferSize);
  /packages/apps/Bluetooth/jni/
com_android_bluetooth_hid.cpp 421 static jboolean getReportNative(JNIEnv *env, jobject object, jbyteArray address, jbyte reportType, jbyte reportId, jint bufferSize) {
422 ALOGV("%s: reportType = %d, reportId = %d, bufferSize = %d", __FUNCTION__, reportType, reportId, bufferSize);
436 jint rId = reportId;
  /system/bt/btif/src/
btif_hh.c 280 UINT8 len = 2; /* reportid + 1 byte report*/
    [all...]

Completed in 798 milliseconds