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

  /packages/apps/Bluetooth/tests/unit/src/com/android/bluetooth/gatt/
GattServiceTest.java 26 * Test cases for {@link GattService}.
33 private GattService mService;
42 Assume.assumeTrue("Ignore test when GattService is not enabled",
46 TestUtils.startService(mServiceRule, GattService.class);
47 mService = GattService.getGattService();
56 TestUtils.stopService(mServiceRule, GattService.class);
57 mService = GattService.getGattService();
64 Assert.assertNotNull(GattService.getGattService());
70 GattService gattService = GattService.getGattService()
    [all...]
  /external/sl4a/Common/src/com/googlecode/android_scripting/facade/bluetooth/
GattClientFacade.java 424 BluetoothGattService gattService = gattServiceList.get(serviceIndex);
425 if (gattService == null) {
429 BluetoothGattCharacteristic gattCharacteristic = gattService.getCharacteristic(cUuid);
484 BluetoothGattService gattService = gattServiceList.get(serviceIndex);
485 if (gattService == null) {
488 List<BluetoothGattCharacteristic> charList = gattService.getCharacteristics();
    [all...]

Completed in 474 milliseconds