Searched refs:reportType (Results 1 – 6 of 6) sorted by relevance
/packages/apps/Bluetooth/src/com/android/bluetooth/hid/ |
D | HidHostService.java | 242 byte reportType = data.getByte(BluetoothHidHost.EXTRA_REPORT_TYPE); 245 if (!getReportNative(Utils.getByteAddress(device), reportType, reportId, 268 byte reportType = data.getByte(BluetoothHidHost.EXTRA_REPORT_TYPE); 270 if (!setReportNative(Utils.getByteAddress(device), reportType, report)) { 447 public boolean getReport(BluetoothDevice device, byte reportType, byte reportId, in getReport() argument 454 return service.getReport(device, reportType, reportId, bufferSize); in getReport() 458 public boolean setReport(BluetoothDevice device, byte reportType, String report) { in setReport() argument 464 return service.setReport(device, reportType, report); in setReport() 669 boolean getReport(BluetoothDevice device, byte reportType, byte reportId, int bufferSize) { in getReport() argument 680 data.putByte(BluetoothHidHost.EXTRA_REPORT_TYPE, reportType); in getReport() [all …]
|
D | HidDeviceService.java | 182 byte reportType = (byte) msg.arg1; in handleMessage() 188 mCallback.onSetReport(mHidDevice, reportType, reportId, data); in handleMessage() 859 synchronized void onSetReportFromNative(byte reportType, byte reportId, byte[] data) { in onSetReportFromNative() argument 861 Log.d(TAG, "onSetReport(): reportType=" + reportType + " reportId=" + reportId); in onSetReportFromNative() 867 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 | 391 jbyte reportType, jbyte reportId, in getReportNative() argument 394 reportType, reportId, bufferSize); in getReportNative() 403 jint rType = reportType; in getReportNative() 419 jbyte reportType, jstring report) { in setReportNative() argument 420 ALOGV("%s: reportType = %d", __func__, reportType); in setReportNative() 428 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 | 1558 void onBatchScanReports(int status, int scannerId, int reportType, int numRecords, in onBatchScanReports() argument 1562 + ", reportType=" + reportType + ", numRecords=" + numRecords); in onBatchScanReports() 1565 Set<ScanResult> results = parseBatchScanResults(numRecords, reportType, recordData); in onBatchScanReports() 1566 if (reportType == ScanManager.SCAN_RESULT_TYPE_TRUNCATED) { in onBatchScanReports() 1627 private Set<ScanResult> parseBatchScanResults(int numRecords, int reportType, in parseBatchScanResults() argument 1635 if (reportType == ScanManager.SCAN_RESULT_TYPE_TRUNCATED) { in parseBatchScanResults()
|