Home
last modified time | relevance | path

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

/packages/modules/Bluetooth/framework/java/android/bluetooth/
DBluetoothGattDescriptor.java34 public class BluetoothGattDescriptor implements Parcelable { class
110 public BluetoothGattDescriptor(UUID uuid, int permissions) { in BluetoothGattDescriptor() method in BluetoothGattDescriptor
121 /*package*/ BluetoothGattDescriptor( in BluetoothGattDescriptor() method in BluetoothGattDescriptor
127 public BluetoothGattDescriptor(UUID uuid, int instance, int permissions) { in BluetoothGattDescriptor() method in BluetoothGattDescriptor
162 private BluetoothGattDescriptor(Parcel in) { in BluetoothGattDescriptor() method in BluetoothGattDescriptor
/packages/modules/Bluetooth/system/gd/rust/linux/stack/src/
Dbluetooth_gatt.rs692 pub struct BluetoothGattDescriptor { struct
698 impl BluetoothGattDescriptor { argument
699 pub fn new(uuid: Uuid, instance_id: i32, permissions: i32) -> BluetoothGattDescriptor { in new()