Home | History | Annotate | Download | only in bluetooth

Lines Matching defs:characteristic

128         BluetoothGattCharacteristic characteristic = getCharacteristic(CHARACTERISTIC_UUID);
129 if (characteristic != null) return;
130 characteristic.setValue(writeValue);
194 BluetoothGattCharacteristic characteristic =
196 if (characteristic == null) {
197 showMessage("Characteristic not found");
200 return characteristic;
204 BluetoothGattCharacteristic characteristic = getCharacteristic(CHARACTERISTIC_UUID);
205 if (characteristic == null) return null;
207 BluetoothGattDescriptor descriptor = characteristic.getDescriptor(DESCRIPTOR_UUID);
218 BluetoothGattCharacteristic characteristic =
221 characteristic.addDescriptor(descriptor);
222 service.addCharacteristic(characteristic);
239 BluetoothGattCharacteristic characteristic =
241 if (characteristic == null) return;
244 characteristic.setValue(date);
245 mGattServer.notifyCharacteristicChanged(mDevice, characteristic, false);
291 int offset, BluetoothGattCharacteristic characteristic) {
300 characteristic.getValue());
305 BluetoothGattCharacteristic characteristic,
316 else characteristic.setValue(value);