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

  /external/robolectric-shadows/robolectric/src/test/java/org/robolectric/shadows/
ShadowBluetoothGattTest.java 6 import android.bluetooth.BluetoothDevice;
22 BluetoothDevice bluetoothDevice = ShadowBluetoothDevice.newInstance(MOCK_MAC_ADDRESS);
23 BluetoothGatt bluetoothGatt = ShadowBluetoothGatt.newInstance(bluetoothDevice);
ShadowBluetoothDeviceTest.java 3 import static android.bluetooth.BluetoothDevice.BOND_BONDED;
4 import static android.bluetooth.BluetoothDevice.BOND_NONE;
10 import android.bluetooth.BluetoothDevice;
28 BluetoothDevice bluetoothDevice = ShadowBluetoothDevice.newInstance(MOCK_MAC_ADDRESS);
29 assertThat(bluetoothDevice).isNotNull();
34 BluetoothDevice device = BluetoothAdapter.getDefaultAdapter().getRemoteDevice(MOCK_MAC_ADDRESS);
47 BluetoothDevice device = BluetoothAdapter.getDefaultAdapter().getRemoteDevice(MOCK_MAC_ADDRESS);
53 BluetoothDevice device = BluetoothAdapter.getDefaultAdapter().getRemoteDevice(MOCK_MAC_ADDRESS);
63 BluetoothDevice device = BluetoothAdapter.getDefaultAdapter().getRemoteDevice(MOCK_MAC_ADDRESS)
    [all...]
ShadowBluetoothAdapterTest.java 9 import android.bluetooth.BluetoothDevice;
169 public void onLeScan(BluetoothDevice bluetoothDevice, int i, byte[] bytes) {}
  /cts/apps/CtsVerifier/src/com/android/cts/verifier/bluetooth/
HidHostActivity.java 20 import android.bluetooth.BluetoothDevice;
102 BluetoothDevice bluetoothDevice = mBluetoothAdapter.getRemoteDevice(mDeviceAddress);
103 bluetoothDevice.createBond();
  /external/sl4a/Common/src/com/googlecode/android_scripting/facade/bluetooth/
GattServerFacade.java 21 import android.bluetooth.BluetoothDevice;
59 private final HashMap<Integer, List<BluetoothDevice>> mGattServerDiscoveredDevicesList;
84 mGattServerDiscoveredDevicesList = new HashMap<Integer, List<BluetoothDevice>>();
154 public List<BluetoothDevice> gattServerGetConnectedDevices(
159 List<BluetoothDevice> connectedDevices =
189 List<BluetoothDevice> connectedDevices =
191 BluetoothDevice bluetoothDevice = connectedDevices.get(bluetoothDeviceIndex);
192 gattServer.sendResponse(bluetoothDevice, requestId, status, offset, value);
218 List<BluetoothDevice> connectedDevices
    [all...]

Completed in 158 milliseconds