Home
last modified time | relevance | path

Searched refs:BluetoothGattDescriptor (Results 1 – 14 of 14) sorted by relevance

/frameworks/base/core/java/android/bluetooth/
DBluetoothGattDescriptor.java31 public class BluetoothGattDescriptor implements Parcelable { class
127 public BluetoothGattDescriptor(UUID uuid, int permissions) { in BluetoothGattDescriptor() method in BluetoothGattDescriptor
139 /*package*/ BluetoothGattDescriptor(BluetoothGattCharacteristic characteristic, UUID uuid, in BluetoothGattDescriptor() method in BluetoothGattDescriptor
147 public BluetoothGattDescriptor(UUID uuid, int instance, int permissions) { in BluetoothGattDescriptor() method in BluetoothGattDescriptor
172 public static final Parcelable.Creator<BluetoothGattDescriptor> CREATOR
173 = new Parcelable.Creator<BluetoothGattDescriptor>() {
174 public BluetoothGattDescriptor createFromParcel(Parcel in) {
175 return new BluetoothGattDescriptor(in);
178 public BluetoothGattDescriptor[] newArray(int size) {
179 return new BluetoothGattDescriptor[size];
[all …]
DBluetoothGattCharacteristic.java224 protected List<BluetoothGattDescriptor> mDescriptors;
266 mDescriptors = new ArrayList<BluetoothGattDescriptor>(); in initCharacteristic()
311 mDescriptors = new ArrayList<BluetoothGattDescriptor>(); in BluetoothGattCharacteristic()
313 ArrayList<BluetoothGattDescriptor> descs = in BluetoothGattCharacteristic()
314 in.createTypedArrayList(BluetoothGattDescriptor.CREATOR); in BluetoothGattCharacteristic()
316 for (BluetoothGattDescriptor desc: descs) { in BluetoothGattCharacteristic()
338 public boolean addDescriptor(BluetoothGattDescriptor descriptor) { in addDescriptor()
348 /*package*/ BluetoothGattDescriptor getDescriptor(UUID uuid, int instanceId) { in getDescriptor()
349 for(BluetoothGattDescriptor descriptor : mDescriptors) { in getDescriptor()
455 public List<BluetoothGattDescriptor> getDescriptors() { in getDescriptors()
[all …]
DBluetoothGattCallback.java102 public void onDescriptorRead(BluetoothGatt gatt, BluetoothGattDescriptor descriptor, in onDescriptorRead()
115 public void onDescriptorWrite(BluetoothGatt gatt, BluetoothGattDescriptor descriptor, in onDescriptorWrite()
DBluetoothGattServerCallback.java97 int offset, BluetoothGattDescriptor descriptor) { in onDescriptorReadRequest()
116 BluetoothGattDescriptor descriptor, in onDescriptorWriteRequest()
DBluetoothGattDescriptor.aidl19 parcelable BluetoothGattDescriptor;
DBluetoothGatt.java375 BluetoothGattDescriptor descriptor = getDescriptorById(mDevice, handle);
416 BluetoothGattDescriptor descriptor = getDescriptorById(mDevice, handle);
559 /*package*/ BluetoothGattDescriptor getDescriptorById(BluetoothDevice device, int instanceId) { in getDescriptorById()
562 for(BluetoothGattDescriptor desc : charac.getDescriptors()) { in getDescriptorById()
887 public boolean readDescriptor(BluetoothGattDescriptor descriptor) { in readDescriptor()
928 public boolean writeDescriptor(BluetoothGattDescriptor descriptor) { in writeDescriptor()
DBluetoothGattServer.java176 BluetoothGattDescriptor descriptor = characteristic.getDescriptor(descrUuid);
239 BluetoothGattDescriptor descriptor = characteristic.getDescriptor(descrUuid);
594 List<BluetoothGattDescriptor> descriptors = characteristic.getDescriptors(); in addService()
595 for (BluetoothGattDescriptor descriptor: descriptors) { in addService()
/frameworks/base/media/packages/BluetoothMidiService/src/com/android/bluetoothmidiservice/
DBluetoothMidiDevice.java23 import android.bluetooth.BluetoothGattDescriptor;
155 BluetoothGattDescriptor descriptor = characteristic.getDescriptor(
158 descriptor.setValue(BluetoothGattDescriptor.ENABLE_NOTIFICATION_VALUE);
/frameworks/base/docs/html/guide/topics/connectivity/
Dbluetooth-le.jd588 BluetoothGattDescriptor descriptor = characteristic.getDescriptor(
590 descriptor.setValue(BluetoothGattDescriptor.ENABLE_NOTIFICATION_VALUE);
/frameworks/opt/setupwizard/tools/docs/
Dandroid-22.txt6254 method public boolean readDescriptor(android.bluetooth.BluetoothGattDescriptor);
6260 method public boolean writeDescriptor(android.bluetooth.BluetoothGattDescriptor);
6282 … onDescriptorRead(android.bluetooth.BluetoothGatt, android.bluetooth.BluetoothGattDescriptor, int);
6283 …onDescriptorWrite(android.bluetooth.BluetoothGatt, android.bluetooth.BluetoothGattDescriptor, int);
6292 method public boolean addDescriptor(android.bluetooth.BluetoothGattDescriptor);
6293 method public android.bluetooth.BluetoothGattDescriptor getDescriptor(java.util.UUID);
6294 method public java.util.List<android.bluetooth.BluetoothGattDescriptor> getDescriptors();
6337 field protected java.util.List<android.bluetooth.BluetoothGattDescriptor> mDescriptors;
6340 public class BluetoothGattDescriptor {
6341 ctor public BluetoothGattDescriptor(java.util.UUID, int);
[all …]
/frameworks/base/
Dcompiled-classes-phone640 android.bluetooth.BluetoothGattDescriptor
/frameworks/base/api/
Dcurrent.txt7116 method public boolean readDescriptor(android.bluetooth.BluetoothGattDescriptor);
7122 method public boolean writeDescriptor(android.bluetooth.BluetoothGattDescriptor);
7144 … onDescriptorRead(android.bluetooth.BluetoothGatt, android.bluetooth.BluetoothGattDescriptor, int);
7145 …onDescriptorWrite(android.bluetooth.BluetoothGatt, android.bluetooth.BluetoothGattDescriptor, int);
7154 method public boolean addDescriptor(android.bluetooth.BluetoothGattDescriptor);
7156 method public android.bluetooth.BluetoothGattDescriptor getDescriptor(java.util.UUID);
7157 method public java.util.List<android.bluetooth.BluetoothGattDescriptor> getDescriptors();
7202 field protected java.util.List<android.bluetooth.BluetoothGattDescriptor> mDescriptors;
7205 public class BluetoothGattDescriptor implements android.os.Parcelable {
7206 ctor public BluetoothGattDescriptor(java.util.UUID, int);
[all …]
Dtest-current.txt7122 method public boolean readDescriptor(android.bluetooth.BluetoothGattDescriptor);
7128 method public boolean writeDescriptor(android.bluetooth.BluetoothGattDescriptor);
7150 … onDescriptorRead(android.bluetooth.BluetoothGatt, android.bluetooth.BluetoothGattDescriptor, int);
7151 …onDescriptorWrite(android.bluetooth.BluetoothGatt, android.bluetooth.BluetoothGattDescriptor, int);
7160 method public boolean addDescriptor(android.bluetooth.BluetoothGattDescriptor);
7162 method public android.bluetooth.BluetoothGattDescriptor getDescriptor(java.util.UUID);
7163 method public java.util.List<android.bluetooth.BluetoothGattDescriptor> getDescriptors();
7208 field protected java.util.List<android.bluetooth.BluetoothGattDescriptor> mDescriptors;
7211 public class BluetoothGattDescriptor implements android.os.Parcelable {
7212 ctor public BluetoothGattDescriptor(java.util.UUID, int);
[all …]
Dsystem-current.txt7408 method public boolean readDescriptor(android.bluetooth.BluetoothGattDescriptor);
7414 method public boolean writeDescriptor(android.bluetooth.BluetoothGattDescriptor);
7436 … onDescriptorRead(android.bluetooth.BluetoothGatt, android.bluetooth.BluetoothGattDescriptor, int);
7437 …onDescriptorWrite(android.bluetooth.BluetoothGatt, android.bluetooth.BluetoothGattDescriptor, int);
7446 method public boolean addDescriptor(android.bluetooth.BluetoothGattDescriptor);
7448 method public android.bluetooth.BluetoothGattDescriptor getDescriptor(java.util.UUID);
7449 method public java.util.List<android.bluetooth.BluetoothGattDescriptor> getDescriptors();
7494 field protected java.util.List<android.bluetooth.BluetoothGattDescriptor> mDescriptors;
7497 public class BluetoothGattDescriptor implements android.os.Parcelable {
7498 ctor public BluetoothGattDescriptor(java.util.UUID, int);
[all …]