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

  /external/robolectric-shadows/robolectric/src/test/java/org/robolectric/shadows/
ShadowBluetoothDeviceTest.java 97 bluetoothDevice.connectGatt(
  /external/robolectric-shadows/shadows/framework/src/main/java/org/robolectric/shadows/
ShadowBluetoothDevice.java 128 protected BluetoothGatt connectGatt(
  /cts/apps/CtsVerifier/src/com/android/cts/verifier/bluetooth/
BleCocClientService.java 259 public static BluetoothGatt connectGatt(BluetoothDevice device, Context context,
265 Toast.makeText(context, "connectGatt(transport=AUTO)", Toast.LENGTH_SHORT)
268 Toast.makeText(context, "connectGatt(transport=LE)", Toast.LENGTH_SHORT).show();
270 return device.connectGatt(context, autoConnect, callback,
273 Toast.makeText(context, "connectGatt(transport=LE)", Toast.LENGTH_SHORT).show();
274 return device.connectGatt(context, autoConnect, callback,
278 Toast.makeText(context, "connectGatt", Toast.LENGTH_SHORT).show();
279 return device.connectGatt(context, autoConnect, callback);
498 mBluetoothGatt = connectGatt(result.getDevice(), BleCocClientService.this, false,
503 mBluetoothGatt = connectGatt(result.getDevice(), BleCocClientService.this, false, mSecure
    [all...]
BleClientService.java 489 public static BluetoothGatt connectGatt(BluetoothDevice device, Context context, boolean autoConnect, boolean isSecure, BluetoothGattCallback callback) {
493 Toast.makeText(context, "connectGatt(transport=AUTO)", Toast.LENGTH_SHORT).show();
495 Toast.makeText(context, "connectGatt(transport=LE)", Toast.LENGTH_SHORT).show();
497 return device.connectGatt(context, autoConnect, callback, TRANSPORT_MODE_FOR_SECURE_CONNECTION);
499 Toast.makeText(context, "connectGatt(transport=LE)", Toast.LENGTH_SHORT).show();
500 return device.connectGatt(context, autoConnect, callback, BluetoothDevice.TRANSPORT_LE);
503 Toast.makeText(context, "connectGatt", Toast.LENGTH_SHORT).show();
504 return device.connectGatt(context, autoConnect, callback);
    [all...]

Completed in 790 milliseconds