Home
last modified time | relevance | path

Searched defs:BluetoothGattDescriptor (Results 1 – 3 of 3) sorted by relevance

/packages/modules/Bluetooth/framework/java/android/bluetooth/
DBluetoothGattDescriptor.java33 public class BluetoothGattDescriptor implements Parcelable { class
135 public BluetoothGattDescriptor(UUID uuid, int permissions) { in BluetoothGattDescriptor() method in BluetoothGattDescriptor
146 /*package*/ BluetoothGattDescriptor(BluetoothGattCharacteristic characteristic, UUID uuid, in BluetoothGattDescriptor() method in BluetoothGattDescriptor
154 public BluetoothGattDescriptor(UUID uuid, int instance, int permissions) { in BluetoothGattDescriptor() method in BluetoothGattDescriptor
189 private BluetoothGattDescriptor(Parcel in) { in BluetoothGattDescriptor() method in BluetoothGattDescriptor
/packages/modules/Bluetooth/system/service/common/android/bluetooth/
Dbluetooth_gatt_descriptor.h35 BluetoothGattDescriptor( in BluetoothGattDescriptor() function
/packages/modules/Bluetooth/system/gd/rust/linux/stack/src/
Dbluetooth_gatt.rs263 pub struct BluetoothGattDescriptor { struct
269 impl BluetoothGattDescriptor { argument
270 fn new(uuid: Uuid128Bit, instance_id: i32, permissions: i32) -> BluetoothGattDescriptor { in new()