HomeSort by relevance Sort by last modified time
    Searched defs:bluetoothDevice (Results 1 - 2 of 2) sorted by null

  /frameworks/base/media/packages/BluetoothMidiService/src/com/android/bluetoothmidiservice/
BluetoothMidiService.java 20 import android.bluetooth.BluetoothDevice;
31 // BluetoothMidiDevices keyed by BluetoothDevice
32 private final HashMap<BluetoothDevice,BluetoothMidiDevice> mDeviceServerMap
33 = new HashMap<BluetoothDevice,BluetoothMidiDevice>();
38 BluetoothDevice bluetoothDevice = (BluetoothDevice)intent.getParcelableExtra("device");
39 if (bluetoothDevice == null) {
40 Log.e(TAG, "no BluetoothDevice in onBind intent");
46 device = mDeviceServerMap.get(bluetoothDevice);
    [all...]
  /frameworks/base/services/midi/java/com/android/server/midi/
MidiService.java 19 import android.bluetooth.BluetoothDevice;
86 // list of all Bluetooth devices, keyed by BluetoothDevice
87 private final HashMap<BluetoothDevice, Device> mBluetoothDevices
88 = new HashMap<BluetoothDevice, Device>();
276 private final BluetoothDevice mBluetoothDevice;
297 mBluetoothDevice = (BluetoothDevice)deviceInfo.getProperties().getParcelable(
302 public Device(BluetoothDevice bluetoothDevice) {
303 mBluetoothDevice = bluetoothDevice;
631 public void openBluetoothDevice(IBinder token, BluetoothDevice bluetoothDevice
    [all...]

Completed in 47 milliseconds