Searched defs:bluetoothDevice (Results 1 - 4 of 4) sorted by relevance

/frameworks/base/media/java/android/media/midi/
H A DMidiManager.java275 * @param bluetoothDevice a {@link android.bluetooth.BluetoothDevice} to open as a MIDI device
282 public void openBluetoothDevice(BluetoothDevice bluetoothDevice, argument
305 mService.openBluetoothDevice(mToken, bluetoothDevice, callback);
/frameworks/base/services/midi/java/com/android/server/midi/
H A DMidiService.java314 public Device(BluetoothDevice bluetoothDevice) { argument
315 mBluetoothDevice = bluetoothDevice;
678 public void openBluetoothDevice(IBinder token, BluetoothDevice bluetoothDevice, argument
686 device = mBluetoothDevices.get(bluetoothDevice);
688 device = new Device(bluetoothDevice);
689 mBluetoothDevices.put(bluetoothDevice, device);
801 BluetoothDevice bluetoothDevice = null;
803 bluetoothDevice = (BluetoothDevice)properties.getParcelable(
805 device = mBluetoothDevices.get(bluetoothDevice);
814 if (bluetoothDevice !
[all...]
/frameworks/base/telecomm/java/android/telecom/
H A DInCallService.java431 * @param bluetoothDevice The bluetooth device to connect to.
433 public final void requestBluetoothAudio(@NonNull BluetoothDevice bluetoothDevice) { argument
435 mPhone.requestBluetoothAudio(bluetoothDevice.getAddress());
H A DConnection.java2614 * @param bluetoothDevice The bluetooth device to connect to.
2616 public void requestBluetoothAudio(@NonNull BluetoothDevice bluetoothDevice) { argument
2619 bluetoothDevice.getAddress());

Completed in 292 milliseconds