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

  /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...]
  /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...]
  /developers/build/prebuilts/gradle/BluetoothLeGatt/Application/src/main/java/com/example/android/bluetoothlegatt/
DeviceControlActivity.java 258 for (BluetoothGattService gattService : gattServices) {
260 uuid = gattService.getUuid().toString();
269 gattService.getCharacteristics();
  /developers/samples/android/connectivity/bluetooth/BluetoothLeGatt/Application/src/main/java/com/example/android/bluetoothlegatt/
DeviceControlActivity.java 258 for (BluetoothGattService gattService : gattServices) {
260 uuid = gattService.getUuid().toString();
269 gattService.getCharacteristics();
  /development/samples/browseable/BluetoothLeGatt/src/com.example.android.bluetoothlegatt/
DeviceControlActivity.java 258 for (BluetoothGattService gattService : gattServices) {
260 uuid = gattService.getUuid().toString();
269 gattService.getCharacteristics();
  /tools/test/connectivity/acts/framework/acts/test_utils/bt/
bt_gatt_utils.py 246 gattService = per_droid.gattServerCreateService(
253 per_droid.gattServerAddCharacteristicToService(gattService,
255 per_droid.gattServerAddService(gatt_server, gattService)

Completed in 172 milliseconds