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.java57 private final HashMap<Integer, BluetoothGattService> mGattServiceList; field in GattServerFacade
82 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()
296 mGattServiceList.put(index, new BluetoothGattService(UUID.fromString(uuid), serviceType)); in gattServerCreateService()
343 if (mGattServiceList.get(index) != null) { in gattServerAddCharacteristicToService()
345 mGattServiceList.get(index).addCharacteristic(mCharacteristicList.get( in gattServerAddCharacteristicToService()
727 if (mGattServiceList.get(serviceIndex) == null) { in gattServerServiceSetInstanceId()
733 setInstanceIdMethod.invoke(mGattServiceList.get(serviceIndex), instanceId); in gattServerServiceSetInstanceId()
747 if (mGattServiceList.get(serviceIndex) == null) { in gattServerServiceSetHandlesToReserve()
[all …]
DGattClientFacade.java57 private final HashMap<Integer, BluetoothGattService> mGattServiceList; field in GattClientFacade
88 mGattServiceList = new HashMap<Integer, BluetoothGattService>(); in GattClientFacade()