Home
last modified time | relevance | path

Searched refs:mGattServiceList (Results 1 – 2 of 2) sorted by relevance

/external/sl4a/Common/src/com/googlecode/android_scripting/facade/bluetooth/
DGattServerFacade.java58 private final HashMap<Integer, BluetoothGattService> mGattServiceList; field in GattServerFacade
83 mGattServiceList = new HashMap<Integer, BluetoothGattService>(); in GattServerFacade()
121 if (mGattServiceList.get(serviceIndex) != null) { in gattServerAddService()
122 mBluetoothGattServerList.get(index).addService(mGattServiceList.get(serviceIndex)); in gattServerAddService()
246 mGattServiceList.put(index, new BluetoothGattService(UUID.fromString(uuid), serviceType)); in gattServerCreateService()
290 if (mGattServiceList.get(index) != null) { in gattServerAddCharacteristicToService()
292 mGattServiceList.get(index).addCharacteristic(mCharacteristicList.get(characteristicIndex)); in gattServerAddCharacteristicToService()
DGattClientFacade.java58 private final HashMap<Integer, BluetoothGattService> mGattServiceList; field in GattClientFacade
87 mGattServiceList = new HashMap<Integer, BluetoothGattService>(); in GattClientFacade()