Home
last modified time | relevance | path

Searched refs:read_descriptor (Results 1 – 11 of 11) sorted by relevance

/packages/modules/Bluetooth/floss/pandora/server/
Dgatt.py203 … 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
Dbluetooth.py332 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/
Dbt_gatt_client.h265 bt_status_t (*read_descriptor)(int conn_id, uint16_t handle, int auth_req); member
/packages/modules/Bluetooth/system/blueberry/tests/topshim/lib/
Dgatt_client.py267 async def read_descriptor(self): member in GattClient
/packages/modules/Bluetooth/system/gd/rust/topshim/facade/src/
Dgatt_service.rs554 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/
Dgatt_client.py840 def read_descriptor(self, address, handle, auth_req): member in FlossGattClient
/packages/modules/Bluetooth/system/gd/rust/linux/service/src/
Diface_bluetooth_gatt.rs832 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/
Dgatt.rs1267 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/
Dbluetooth_gatt.rs560 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/
Ddbus_iface.rs1707 fn read_descriptor(&self, client_id: i32, addr: RawAddress, handle: i32, auth_req: i32) { in read_descriptor() method
/packages/modules/Bluetooth/android/app/jni/
Dcom_android_bluetooth_gatt.cpp1470 sGattIf->client->read_descriptor(conn_id, handle, authReq); in gattClientReadDescriptorNative()