Searched refs:BluetoothGattCharacteristic (Results 1 - 7 of 7) sorted by relevance

/frameworks/base/core/java/android/bluetooth/
H A DBluetoothGattService.java27 * <p> Gatt Service contains a collection of {@link BluetoothGattCharacteristic},
77 protected List<BluetoothGattCharacteristic> mCharacteristics;
98 mCharacteristics = new ArrayList<BluetoothGattCharacteristic>();
112 mCharacteristics = new ArrayList<BluetoothGattCharacteristic>();
143 public boolean addCharacteristic(BluetoothGattCharacteristic characteristic) {
153 /*package*/ BluetoothGattCharacteristic getCharacteristic(UUID uuid, int instanceId) {
154 for(BluetoothGattCharacteristic characteristic : mCharacteristics) {
240 public List<BluetoothGattCharacteristic> getCharacteristics() {
259 public BluetoothGattCharacteristic getCharacteristic(UUID uuid) {
260 for(BluetoothGattCharacteristic characteristi
[all...]
H A DBluetoothGattCallback.java59 public void onCharacteristicRead(BluetoothGatt gatt, BluetoothGattCharacteristic characteristic,
79 BluetoothGattCharacteristic characteristic, int status) {
90 BluetoothGattCharacteristic characteristic) {
H A DBluetoothGattDescriptor.java25 * characteristic, {@link BluetoothGattCharacteristic}. They can be used to describe
103 protected BluetoothGattCharacteristic mCharacteristic;
130 /*package*/ BluetoothGattDescriptor(BluetoothGattCharacteristic characteristic, UUID uuid,
135 private void initDescriptor(BluetoothGattCharacteristic characteristic, UUID uuid,
146 public BluetoothGattCharacteristic getCharacteristic() {
154 /*package*/ void setCharacteristic(BluetoothGattCharacteristic characteristic) {
H A DBluetoothGattServerCallback.java63 int offset, BluetoothGattCharacteristic characteristic) {
82 BluetoothGattCharacteristic characteristic,
H A DBluetoothGatt.java250 service.addCharacteristic(new BluetoothGattCharacteristic(
274 BluetoothGattCharacteristic characteristic = service.getCharacteristic(
335 BluetoothGattCharacteristic characteristic = service.getCharacteristic(
366 BluetoothGattCharacteristic characteristic = service.getCharacteristic(
412 BluetoothGattCharacteristic characteristic = service.getCharacteristic(
442 BluetoothGattCharacteristic characteristic = service.getCharacteristic(
491 BluetoothGattCharacteristic characteristic = service.getCharacteristic(
825 public boolean readCharacteristic(BluetoothGattCharacteristic characteristic) {
827 BluetoothGattCharacteristic.PROPERTY_READ) == 0) return false;
863 public boolean writeCharacteristic(BluetoothGattCharacteristic characteristi
[all...]
H A DBluetoothGattCharacteristic.java30 public class BluetoothGattCharacteristic { class
225 * Create a new BluetoothGattCharacteristic.
232 public BluetoothGattCharacteristic(UUID uuid, int properties, int permissions) { method in class:BluetoothGattCharacteristic
237 * Create a new BluetoothGattCharacteristic
240 /*package*/ BluetoothGattCharacteristic(BluetoothGattService service, method in class:BluetoothGattCharacteristic
H A DBluetoothGattServer.java151 BluetoothGattCharacteristic characteristic = service.getCharacteristic(charUuid);
180 BluetoothGattCharacteristic characteristic = service.getCharacteristic(charUuid);
210 BluetoothGattCharacteristic characteristic = service.getCharacteristic(charUuid);
243 BluetoothGattCharacteristic characteristic = service.getCharacteristic(charUuid);
495 BluetoothGattCharacteristic characteristic, boolean confirm) {
550 List<BluetoothGattCharacteristic> characteristics = service.getCharacteristics();
551 for (BluetoothGattCharacteristic characteristic : characteristics) {

Completed in 58 milliseconds