Home
last modified time | relevance | path

Searched refs:BluetoothGattCharacteristic (Results 1 – 13 of 13) sorted by relevance

/frameworks/base/core/java/android/bluetooth/
DBluetoothGattService.java86 protected List<BluetoothGattCharacteristic> mCharacteristics;
112 mCharacteristics = new ArrayList<BluetoothGattCharacteristic>(); in BluetoothGattService()
127 mCharacteristics = new ArrayList<BluetoothGattCharacteristic>(); in BluetoothGattService()
141 mCharacteristics = new ArrayList<BluetoothGattCharacteristic>(); in BluetoothGattService()
184 mCharacteristics = new ArrayList<BluetoothGattCharacteristic>(); in BluetoothGattService()
186 ArrayList<BluetoothGattCharacteristic> chrcs = in BluetoothGattService()
187 in.createTypedArrayList(BluetoothGattCharacteristic.CREATOR); in BluetoothGattService()
189 for (BluetoothGattCharacteristic chrc : chrcs) { in BluetoothGattService()
244 public boolean addCharacteristic(BluetoothGattCharacteristic characteristic) { in addCharacteristic()
255 /*package*/ BluetoothGattCharacteristic getCharacteristic(UUID uuid, int instanceId) { in getCharacteristic()
[all …]
DBluetoothGattDescriptor.java120 protected BluetoothGattCharacteristic mCharacteristic;
148 /*package*/ BluetoothGattDescriptor(BluetoothGattCharacteristic characteristic, UUID uuid, in BluetoothGattDescriptor()
160 private void initDescriptor(BluetoothGattCharacteristic characteristic, UUID uuid, in initDescriptor()
202 public BluetoothGattCharacteristic getCharacteristic() { in getCharacteristic()
212 /*package*/ void setCharacteristic(BluetoothGattCharacteristic characteristic) { in setCharacteristic()
DBluetoothGattCharacteristic.java34 public class BluetoothGattCharacteristic implements Parcelable { class
246 public BluetoothGattCharacteristic(UUID uuid, int properties, int permissions) { in BluetoothGattCharacteristic() method in BluetoothGattCharacteristic
255 /*package*/ BluetoothGattCharacteristic(BluetoothGattService service, in BluetoothGattCharacteristic() method in BluetoothGattCharacteristic
266 public BluetoothGattCharacteristic(UUID uuid, int instanceId, in BluetoothGattCharacteristic() method in BluetoothGattCharacteristic
305 …public static final @android.annotation.NonNull Parcelable.Creator<BluetoothGattCharacteristic> CR…
306 new Parcelable.Creator<BluetoothGattCharacteristic>() {
307 public BluetoothGattCharacteristic createFromParcel(Parcel in) {
308 return new BluetoothGattCharacteristic(in);
311 public BluetoothGattCharacteristic[] newArray(int size) {
312 return new BluetoothGattCharacteristic[size];
[all …]
DBluetoothGattCallback.java86 public void onCharacteristicRead(BluetoothGatt gatt, BluetoothGattCharacteristic characteristic, in onCharacteristicRead()
105 BluetoothGattCharacteristic characteristic, int status) { in onCharacteristicWrite()
116 BluetoothGattCharacteristic characteristic) { in onCharacteristicChanged()
DBluetoothGattServer.java121 List<BluetoothGattCharacteristic> temp_chars = tmp.getCharacteristics();
122 List<BluetoothGattCharacteristic> svc_chars = service.getCharacteristics();
124 BluetoothGattCharacteristic temp_char = temp_chars.get(i);
125 BluetoothGattCharacteristic svc_char = svc_chars.get(i);
155 BluetoothGattCharacteristic characteristic = getCharacteristicByHandle(handle);
203 BluetoothGattCharacteristic characteristic = getCharacteristicByHandle(handle);
393 /*package*/ BluetoothGattCharacteristic getCharacteristicByHandle(int handle) { in getCharacteristicByHandle()
395 for (BluetoothGattCharacteristic charac : svc.getCharacteristics()) { in getCharacteristicByHandle()
411 for (BluetoothGattCharacteristic charac : svc.getCharacteristics()) { in getDescriptorByHandle()
671 BluetoothGattCharacteristic characteristic, boolean confirm) { in notifyCharacteristicChanged()
DBluetoothGatt.java381 BluetoothGattCharacteristic characteristic = getCharacteristicById(mDevice,
421 BluetoothGattCharacteristic characteristic = getCharacteristicById(mDevice,
468 BluetoothGattCharacteristic characteristic = getCharacteristicById(mDevice,
743 /*package*/ BluetoothGattCharacteristic getCharacteristicById(BluetoothDevice device, in getCharacteristicById()
746 for (BluetoothGattCharacteristic charac : svc.getCharacteristics()) { in getCharacteristicById()
762 for (BluetoothGattCharacteristic charac : svc.getCharacteristics()) { in getDescriptorById()
1088 public boolean readCharacteristic(BluetoothGattCharacteristic characteristic) { in readCharacteristic()
1089 if ((characteristic.getProperties() & BluetoothGattCharacteristic.PROPERTY_READ) == 0) { in readCharacteristic()
1166 public boolean writeCharacteristic(BluetoothGattCharacteristic characteristic) { in writeCharacteristic()
1167 if ((characteristic.getProperties() & BluetoothGattCharacteristic.PROPERTY_WRITE) == 0 in writeCharacteristic()
[all …]
DBluetoothGattServerCallback.java58 int offset, BluetoothGattCharacteristic characteristic) { in onCharacteristicReadRequest()
76 BluetoothGattCharacteristic characteristic, in onCharacteristicWriteRequest()
/frameworks/base/media/packages/BluetoothMidiService/src/com/android/bluetoothmidiservice/
DBluetoothMidiDevice.java22 import android.bluetooth.BluetoothGattCharacteristic;
74 private BluetoothGattCharacteristic mCharacteristic;
118 BluetoothGattCharacteristic characteristic
143 BluetoothGattCharacteristic characteristic,
153 characteristic.setWriteType(BluetoothGattCharacteristic.WRITE_TYPE_DEFAULT);
170 BluetoothGattCharacteristic characteristic,
178 BluetoothGattCharacteristic characteristic) {
/frameworks/base/api/
Dlint-baseline.txt631 … android.bluetooth.BluetoothGatt#readCharacteristic(android.bluetooth.BluetoothGattCharacteristic):
639 ….BluetoothGatt#setCharacteristicNotification(android.bluetooth.BluetoothGattCharacteristic, boolea…
641 …android.bluetooth.BluetoothGatt#writeCharacteristic(android.bluetooth.BluetoothGattCharacteristic):
645 RequiresPermission: android.bluetooth.BluetoothGattCharacteristic#BluetoothGattCharacteristic(java.…
647 RequiresPermission: android.bluetooth.BluetoothGattCharacteristic#addDescriptor(android.bluetooth.B…
663 …icChanged(android.bluetooth.BluetoothDevice, android.bluetooth.BluetoothGattCharacteristic, boolea…
671 …id.bluetooth.BluetoothGattService#addCharacteristic(android.bluetooth.BluetoothGattCharacteristic):
Dcurrent.txt8431 method public boolean readCharacteristic(android.bluetooth.BluetoothGattCharacteristic);
8437 …public boolean setCharacteristicNotification(android.bluetooth.BluetoothGattCharacteristic, boolea…
8439 method public boolean writeCharacteristic(android.bluetooth.BluetoothGattCharacteristic);
8458 …racteristicChanged(android.bluetooth.BluetoothGatt, android.bluetooth.BluetoothGattCharacteristic);
8459 …cteristicRead(android.bluetooth.BluetoothGatt, android.bluetooth.BluetoothGattCharacteristic, int);
8460 …teristicWrite(android.bluetooth.BluetoothGatt, android.bluetooth.BluetoothGattCharacteristic, int);
8472 public class BluetoothGattCharacteristic implements android.os.Parcelable {
8473 ctor public BluetoothGattCharacteristic(java.util.UUID, int, int);
8494 …c static final android.os.Parcelable.Creator<android.bluetooth.BluetoothGattCharacteristic> CREATO…
8528 method public android.bluetooth.BluetoothGattCharacteristic getCharacteristic();
[all …]
/frameworks/opt/setupwizard/tools/docs/
Dandroid-22.txt6253 method public boolean readCharacteristic(android.bluetooth.BluetoothGattCharacteristic);
6258 …public boolean setCharacteristicNotification(android.bluetooth.BluetoothGattCharacteristic, boolea…
6259 method public boolean writeCharacteristic(android.bluetooth.BluetoothGattCharacteristic);
6278 …racteristicChanged(android.bluetooth.BluetoothGatt, android.bluetooth.BluetoothGattCharacteristic);
6279 …cteristicRead(android.bluetooth.BluetoothGatt, android.bluetooth.BluetoothGattCharacteristic, int);
6280 …teristicWrite(android.bluetooth.BluetoothGatt, android.bluetooth.BluetoothGattCharacteristic, int);
6290 public class BluetoothGattCharacteristic {
6291 ctor public BluetoothGattCharacteristic(java.util.UUID, int, int);
6342 method public android.bluetooth.BluetoothGattCharacteristic getCharacteristic();
6371 …icChanged(android.bluetooth.BluetoothDevice, android.bluetooth.BluetoothGattCharacteristic, boolea…
[all …]
/frameworks/base/non-updatable-api/
Dcurrent.txt8431 method public boolean readCharacteristic(android.bluetooth.BluetoothGattCharacteristic);
8437 …public boolean setCharacteristicNotification(android.bluetooth.BluetoothGattCharacteristic, boolea…
8439 method public boolean writeCharacteristic(android.bluetooth.BluetoothGattCharacteristic);
8458 …racteristicChanged(android.bluetooth.BluetoothGatt, android.bluetooth.BluetoothGattCharacteristic);
8459 …cteristicRead(android.bluetooth.BluetoothGatt, android.bluetooth.BluetoothGattCharacteristic, int);
8460 …teristicWrite(android.bluetooth.BluetoothGatt, android.bluetooth.BluetoothGattCharacteristic, int);
8472 public class BluetoothGattCharacteristic implements android.os.Parcelable {
8473 ctor public BluetoothGattCharacteristic(java.util.UUID, int, int);
8494 …c static final android.os.Parcelable.Creator<android.bluetooth.BluetoothGattCharacteristic> CREATO…
8528 method public android.bluetooth.BluetoothGattCharacteristic getCharacteristic();
[all …]
/frameworks/base/config/
Dhiddenapi-greylist-max-o.txt10165 …acteristicById(Landroid/bluetooth/BluetoothDevice;I)Landroid/bluetooth/BluetoothGattCharacteristic;
10183 Landroid/bluetooth/BluetoothGattCharacteristic;-><init>(Landroid/bluetooth/BluetoothGattService;Lja…
10184 Landroid/bluetooth/BluetoothGattCharacteristic;-><init>(Landroid/os/Parcel;)V
10185 Landroid/bluetooth/BluetoothGattCharacteristic;-><init>(Ljava/util/UUID;III)V
10186 Landroid/bluetooth/BluetoothGattCharacteristic;->bytesToFloat(BB)F
10187 Landroid/bluetooth/BluetoothGattCharacteristic;->bytesToFloat(BBBB)F
10188 Landroid/bluetooth/BluetoothGattCharacteristic;->getDescriptor(Ljava/util/UUID;I)Landroid/bluetooth…
10189 Landroid/bluetooth/BluetoothGattCharacteristic;->getKeySize()I
10190 Landroid/bluetooth/BluetoothGattCharacteristic;->getTypeLen(I)I
10191 Landroid/bluetooth/BluetoothGattCharacteristic;->initCharacteristic(Landroid/bluetooth/BluetoothGat…
[all …]