/packages/apps/Bluetooth/jni/ |
H A D | com_android_bluetooth_hid_host.cpp | 383 jbyte reportType, jbyte reportId, 385 ALOGV("%s: reportType = %d, reportId = %d, bufferSize = %d", __func__, 386 reportType, reportId, bufferSize); 395 jint rType = reportType; 411 jbyte reportType, jstring report) { 412 ALOGV("%s: reportType = %d", __func__, reportType); 420 jint rType = reportType; 382 getReportNative(JNIEnv* env, jobject object, jbyteArray address, jbyte reportType, jbyte reportId, jint bufferSize) argument 410 setReportNative(JNIEnv* env, jobject object, jbyteArray address, jbyte reportType, jstring report) argument
|
/packages/apps/Bluetooth/src/com/android/bluetooth/hid/ |
H A D | HidDeviceNativeInterface.java | 208 private synchronized void onSetReport(byte reportType, byte reportId, byte[] data) { argument 211 service.onSetReportFromNative(reportType, reportId, data);
|
H A D | HidDeviceService.java | 178 byte reportType = (byte) msg.arg1; 184 mCallback.onSetReport(mHidDevice, reportType, reportId, data); 763 synchronized void onSetReportFromNative(byte reportType, byte reportId, byte[] data) { argument 765 Log.d(TAG, "onSetReport(): reportType=" + reportType + " reportId=" + reportId); 771 msg.arg1 = reportType;
|
H A D | HidHostService.java | 230 byte reportType = data.getByte(BluetoothHidHost.EXTRA_REPORT_TYPE); 233 if (!getReportNative(Utils.getByteAddress(device), reportType, reportId, 256 byte reportType = data.getByte(BluetoothHidHost.EXTRA_REPORT_TYPE); 258 if (!setReportNative(Utils.getByteAddress(device), reportType, report)) { 421 public boolean getReport(BluetoothDevice device, byte reportType, byte reportId, argument 427 return service.getReport(device, reportType, reportId, bufferSize); 431 public boolean setReport(BluetoothDevice device, byte reportType, String report) { argument 436 return service.setReport(device, reportType, report); 591 boolean getReport(BluetoothDevice device, byte reportType, byte reportId, int bufferSize) { argument 603 data.putByte(BluetoothHidHost.EXTRA_REPORT_TYPE, reportType); 611 setReport(BluetoothDevice device, byte reportType, String report) argument 858 getReportNative(byte[] btAddress, byte reportType, byte reportId, int bufferSize) argument 861 setReportNative(byte[] btAddress, byte reportType, String report) argument [all...] |
/packages/apps/Camera2/src_pd/com/android/camera/stats/ |
H A D | UsageStatistics.java | 95 public void reportMemoryConsumed(HashMap memoryData, String reportType) { argument
|
/packages/apps/Bluetooth/src/com/android/bluetooth/gatt/ |
H A D | GattService.java | 1534 void onBatchScanReports(int status, int scannerId, int reportType, int numRecords, argument 1538 + ", reportType=" + reportType + ", numRecords=" + numRecords); 1541 Set<ScanResult> results = parseBatchScanResults(numRecords, reportType, recordData); 1542 if (reportType == ScanManager.SCAN_RESULT_TYPE_TRUNCATED) { 1603 private Set<ScanResult> parseBatchScanResults(int numRecords, int reportType, argument 1611 if (reportType == ScanManager.SCAN_RESULT_TYPE_TRUNCATED) {
|