Home
last modified time | relevance | path

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

/cts/apps/CtsVerifier/src/com/android/cts/verifier/bluetooth/
DBleClientService.java153 BluetoothGattCharacteristic characteristic = getCharacteristic(CHARACTERISTIC_UUID); in writeCharacteristic() local
154 if (characteristic == null) return; in writeCharacteristic()
155 characteristic.setValue(writeValue); in writeCharacteristic()
156 mBluetoothGatt.writeCharacteristic(characteristic); in writeCharacteristic()
160 BluetoothGattCharacteristic characteristic = getCharacteristic(CHARACTERISTIC_UUID); in readCharacteristic() local
161 if (characteristic != null) mBluetoothGatt.readCharacteristic(characteristic); in readCharacteristic()
177 BluetoothGattCharacteristic characteristic = getCharacteristic(UPDATE_CHARACTERISTIC_UUID); in setNotification() local
178 if (characteristic != null) in setNotification()
179 mBluetoothGatt.setCharacteristicNotification(characteristic, enable); in setNotification()
265 BluetoothGattCharacteristic characteristic = service.getCharacteristic(uuid); in getCharacteristic()
[all …]
DBleServerService.java139 BluetoothGattCharacteristic characteristic = getCharacteristic(CHARACTERISTIC_UUID); in writeCharacteristic() local
140 if (characteristic != null) return; in writeCharacteristic()
141 characteristic.setValue(writeValue); in writeCharacteristic()
205 BluetoothGattCharacteristic characteristic = in getCharacteristic() local
207 if (characteristic == null) { in getCharacteristic()
211 return characteristic; in getCharacteristic()
215 BluetoothGattCharacteristic characteristic = getCharacteristic(CHARACTERISTIC_UUID); in getDescriptor() local
216 if (characteristic == null) return null; in getDescriptor()
218 BluetoothGattDescriptor descriptor = characteristic.getDescriptor(DESCRIPTOR_UUID); in getDescriptor()
229 BluetoothGattCharacteristic characteristic = in createService() local
[all …]