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

  /frameworks/base/media/java/android/media/midi/
IBluetoothMidiService.aidl 19 import android.bluetooth.BluetoothDevice;
25 IBinder addBluetoothDevice(in BluetoothDevice bluetoothDevice);
IMidiManager.aidl 19 import android.bluetooth.BluetoothDevice;
39 void openBluetoothDevice(IBinder clientToken, in BluetoothDevice bluetoothDevice,
MidiManager.java 19 import android.bluetooth.BluetoothDevice;
275 * @param bluetoothDevice a {@link android.bluetooth.BluetoothDevice} to open as a MIDI device
282 public void openBluetoothDevice(BluetoothDevice bluetoothDevice,
305 mService.openBluetoothDevice(mToken, bluetoothDevice, callback);
  /frameworks/base/media/packages/BluetoothMidiService/src/com/android/bluetoothmidiservice/
BluetoothMidiService.java 20 import android.bluetooth.BluetoothDevice;
32 // BluetoothMidiDevices keyed by BluetoothDevice
33 private final HashMap<BluetoothDevice,BluetoothMidiDevice> mDeviceServerMap
34 = new HashMap<BluetoothDevice,BluetoothMidiDevice>();
45 public IBinder addBluetoothDevice(BluetoothDevice bluetoothDevice) {
47 if (bluetoothDevice == null) {
48 Log.e(TAG, "no BluetoothDevice in addBluetoothDevice()");
52 device = mDeviceServerMap.get(bluetoothDevice);
55 bluetoothDevice, BluetoothMidiService.this)
    [all...]
  /frameworks/base/services/midi/java/com/android/server/midi/
MidiService.java 19 import android.bluetooth.BluetoothDevice;
95 // list of all Bluetooth devices, keyed by BluetoothDevice
96 private final HashMap<BluetoothDevice, Device> mBluetoothDevices
97 = new HashMap<BluetoothDevice, Device>();
287 private final BluetoothDevice mBluetoothDevice;
308 mBluetoothDevice = (BluetoothDevice)deviceInfo.getProperties().getParcelable(
313 public Device(BluetoothDevice bluetoothDevice) {
314 mBluetoothDevice = bluetoothDevice;
680 public void openBluetoothDevice(IBinder token, BluetoothDevice bluetoothDevice
    [all...]
  /external/sl4a/Common/src/com/googlecode/android_scripting/facade/bluetooth/
GattServerFacade.java 27 import android.bluetooth.BluetoothDevice;
60 private final HashMap<Integer, List<BluetoothDevice>> mGattServerDiscoveredDevicesList;
85 mGattServerDiscoveredDevicesList = new HashMap<Integer, List<BluetoothDevice>>();
154 public List<BluetoothDevice> gattServerGetConnectedDevices(
159 List<BluetoothDevice> connectedDevices =
187 List<BluetoothDevice> connectedDevices = mGattServerDiscoveredDevicesList.get(gattServerIndex);
191 BluetoothDevice bluetoothDevice = connectedDevices.get(bluetoothDeviceIndex);
192 if (bluetoothDevice == null)
195 gattServer.sendResponse(bluetoothDevice, requestId, status, offset, value)
    [all...]
  /prebuilts/sdk/system_23/
android.jar 

Completed in 143 milliseconds