/packages/modules/Bluetooth/floss/pandora/server/ |
D | gatt.py | 203 … self.bluetooth.gatt_client.read_descriptor(address, request.handle, self.AUTHENTICATION_NONE) 496 self.bluetooth.read_descriptor(address, request.handle, self.AUTHENTICATION_NONE) 625 self.bluetooth.read_descriptor(address, request.handle, self.AUTHENTICATION_NONE) 702 read_descriptor = asyncio.get_running_loop().create_future() 704 'read_descriptor': read_descriptor, 711 self.bluetooth.read_descriptor(address, request.handle, self.AUTHENTICATION_NONE) 712 value, status = await read_descriptor
|
D | bluetooth.py | 332 def read_descriptor(self, address, handle, auth_req): member in Bluetooth 333 return self.gatt_client.read_descriptor(address, handle, auth_req)
|
/packages/modules/Bluetooth/system/include/hardware/ |
D | bt_gatt_client.h | 265 bt_status_t (*read_descriptor)(int conn_id, uint16_t handle, int auth_req); member
|
/packages/modules/Bluetooth/system/blueberry/tests/topshim/lib/ |
D | gatt_client.py | 267 async def read_descriptor(self): member in GattClient
|
/packages/modules/Bluetooth/system/gd/rust/topshim/facade/src/ |
D | gatt_service.rs | 554 fn read_descriptor(&mut self, ctx: RpcContext<'_>, _req: Empty, sink: UnarySink<Empty>) { in read_descriptor() method 556 client.read_descriptor(0, 0, 0); in read_descriptor()
|
/packages/modules/Bluetooth/floss/pandora/floss/ |
D | gatt_client.py | 840 def read_descriptor(self, address, handle, auth_req): member in FlossGattClient
|
/packages/modules/Bluetooth/system/gd/rust/linux/service/src/ |
D | iface_bluetooth_gatt.rs | 832 fn read_descriptor(&self, client_id: i32, addr: RawAddress, handle: i32, auth_req: i32) { in read_descriptor() method
|
/packages/modules/Bluetooth/system/gd/rust/topshim/src/profiles/ |
D | gatt.rs | 1267 pub fn read_descriptor(&self, conn_id: i32, handle: u16, auth_req: i32) -> BtStatus { in read_descriptor() method 1268 BtStatus::from(ccall!(self, read_descriptor, conn_id, handle, auth_req)) in read_descriptor()
|
/packages/modules/Bluetooth/system/gd/rust/linux/stack/src/ |
D | bluetooth_gatt.rs | 560 fn read_descriptor(&self, client_id: i32, addr: RawAddress, handle: i32, auth_req: i32); in read_descriptor() method 2580 fn read_descriptor(&self, client_id: i32, addr: RawAddress, handle: i32, auth_req: i32) { in read_descriptor() method 2587 self.gatt.as_ref().unwrap().lock().unwrap().client.read_descriptor( in read_descriptor()
|
/packages/modules/Bluetooth/system/gd/rust/linux/client/src/ |
D | dbus_iface.rs | 1707 fn read_descriptor(&self, client_id: i32, addr: RawAddress, handle: i32, auth_req: i32) { in read_descriptor() method
|
/packages/modules/Bluetooth/android/app/jni/ |
D | com_android_bluetooth_gatt.cpp | 1470 sGattIf->client->read_descriptor(conn_id, handle, authReq); in gattClientReadDescriptorNative()
|