Searched refs:reportType (Results 1 – 6 of 6) sorted by relevance
/packages/apps/Bluetooth/src/com/android/bluetooth/hid/ |
D | HidHostService.java | 231 byte reportType = data.getByte(BluetoothHidHost.EXTRA_REPORT_TYPE); 234 if (!getReportNative(Utils.getByteAddress(device), reportType, reportId, 257 byte reportType = data.getByte(BluetoothHidHost.EXTRA_REPORT_TYPE); 259 if (!setReportNative(Utils.getByteAddress(device), reportType, report)) { 422 public boolean getReport(BluetoothDevice device, byte reportType, byte reportId, in getReport() argument 428 return service.getReport(device, reportType, reportId, bufferSize); in getReport() 432 public boolean setReport(BluetoothDevice device, byte reportType, String report) { in setReport() argument 437 return service.setReport(device, reportType, report); in setReport() 590 boolean getReport(BluetoothDevice device, byte reportType, byte reportId, int bufferSize) { in getReport() argument 602 data.putByte(BluetoothHidHost.EXTRA_REPORT_TYPE, reportType); in getReport() [all …]
|
D | HidDeviceService.java | 178 byte reportType = (byte) msg.arg1; in handleMessage() 184 mCallback.onSetReport(mHidDevice, reportType, reportId, data); in handleMessage() 763 synchronized void onSetReportFromNative(byte reportType, byte reportId, byte[] data) { in onSetReportFromNative() argument 765 Log.d(TAG, "onSetReport(): reportType=" + reportType + " reportId=" + reportId); in onSetReportFromNative() 771 msg.arg1 = reportType; in onSetReportFromNative()
|
D | HidDeviceNativeInterface.java | 208 private synchronized void onSetReport(byte reportType, byte reportId, byte[] data) { in onSetReport() argument 211 service.onSetReportFromNative(reportType, reportId, data); in onSetReport()
|
/packages/apps/Bluetooth/jni/ |
D | com_android_bluetooth_hid_host.cpp | 383 jbyte reportType, jbyte reportId, in getReportNative() argument 386 reportType, reportId, bufferSize); in getReportNative() 395 jint rType = reportType; in getReportNative() 411 jbyte reportType, jstring report) { in setReportNative() argument 412 ALOGV("%s: reportType = %d", __func__, reportType); in setReportNative() 420 jint rType = reportType; in setReportNative()
|
/packages/apps/Camera2/src_pd/com/android/camera/stats/ |
D | UsageStatistics.java | 95 public void reportMemoryConsumed(HashMap memoryData, String reportType) { in reportMemoryConsumed() argument
|
/packages/apps/Bluetooth/src/com/android/bluetooth/gatt/ |
D | GattService.java | 1554 void onBatchScanReports(int status, int scannerId, int reportType, int numRecords, in onBatchScanReports() argument 1558 + ", reportType=" + reportType + ", numRecords=" + numRecords); in onBatchScanReports() 1561 Set<ScanResult> results = parseBatchScanResults(numRecords, reportType, recordData); in onBatchScanReports() 1562 if (reportType == ScanManager.SCAN_RESULT_TYPE_TRUNCATED) { in onBatchScanReports() 1623 private Set<ScanResult> parseBatchScanResults(int numRecords, int reportType, in parseBatchScanResults() argument 1631 if (reportType == ScanManager.SCAN_RESULT_TYPE_TRUNCATED) { in parseBatchScanResults()
|