Home
last modified time | relevance | path

Searched refs:gattService (Results 1 – 5 of 5) sorted by relevance

/packages/modules/Bluetooth/android/app/src/com/android/bluetooth/tbs/
DTbsGatt.java360 BluetoothGattService gattService = in init() local
362 gattService.addCharacteristic(mBearerProviderNameCharacteristic); in init()
363 gattService.addCharacteristic(mBearerUciCharacteristic); in init()
364 gattService.addCharacteristic(mBearerTechnologyCharacteristic); in init()
365 gattService.addCharacteristic(mBearerUriSchemesSupportedListCharacteristic); in init()
366 gattService.addCharacteristic(mBearerListCurrentCallsCharacteristic); in init()
367 gattService.addCharacteristic(mContentControlIdCharacteristic); in init()
368 gattService.addCharacteristic(mStatusFlagsCharacteristic); in init()
369 gattService.addCharacteristic(mCallStateCharacteristic); in init()
370 gattService.addCharacteristic(mCallControlPointCharacteristic); in init()
[all …]
/packages/modules/Bluetooth/system/blueberry/utils/
Dbt_gatt_utils.py230 gattService = per_droid.gattServerCreateService("00000000-0000-1000-8000-00805f9b34fb",
237 per_droid.gattServerAddCharacteristicToService(gattService, characteristic)
238 per_droid.gattServerAddService(gatt_server, gattService)
/packages/modules/Bluetooth/android/app/src/com/android/bluetooth/gatt/
DGattNativeInterface.java406 public void init(GattService gattService) { in init() argument
407 mGattService = gattService; in init()
/packages/modules/Bluetooth/android/app/tests/unit/src/com/android/bluetooth/btservice/
DAdapterServiceTest.java401 ProfileService gattService, in offToBleOn() argument
467 ProfileService gattService, in doEnable() argument
482 offToBleOn(looper, gattService, adapter, ctx, callback, nativeInterface); in doEnable()
/packages/modules/Bluetooth/android/app/tests/unit/src/com/android/bluetooth/bass_client/
DBassClientStateMachineTest.java482 BluetoothGattService gattService = Mockito.mock(BluetoothGattService.class); in acquireAllBassChars() local
483 when(btGatt.getService(BassConstants.BASS_UUID)).thenReturn(gattService); in acquireAllBassChars()
502 when(gattService.getCharacteristics()).thenReturn(characteristics); in acquireAllBassChars()