Home
last modified time | relevance | path

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

/packages/modules/Bluetooth/system/gd/rust/linux/stack/src/
Dbattery_service.rs194 self.gatt.lock().unwrap().read_characteristic(client_id, addr, handle, 0); in handle_action()
343 self.gatt.lock().unwrap().read_characteristic(client_id, remote_address, handle, 0); in refresh_device()
Dbluetooth_gatt.rs535 fn read_characteristic(&self, client_id: i32, addr: RawAddress, handle: i32, auth_req: i32); in read_characteristic() method
2509 fn read_characteristic(&self, client_id: i32, addr: RawAddress, handle: i32, auth_req: i32) { in read_characteristic() method
2516 self.gatt.as_ref().unwrap().lock().unwrap().client.read_characteristic( in read_characteristic()
/packages/modules/Bluetooth/floss/pandora/server/
Dbluetooth.py329 def read_characteristic(self, address, handle, auth_re): member in Bluetooth
330 return self.gatt_client.read_characteristic(address, handle, auth_re)
Dgatt.py192 self.bluetooth.read_characteristic(address, request.handle, self.AUTHENTICATION_NONE)
370 self.bluetooth.read_characteristic(address, request.handle, self.AUTHENTICATION_NONE)
/packages/modules/Bluetooth/system/include/hardware/
Dbt_gatt_client.h249 bt_status_t (*read_characteristic)(int conn_id, uint16_t handle, member
/packages/modules/Bluetooth/system/blueberry/tests/topshim/lib/
Dgatt_client.py252 async def read_characteristic(self): member in GattClient
/packages/modules/Bluetooth/system/gd/rust/topshim/facade/src/
Dgatt_service.rs525 fn read_characteristic(&mut self, ctx: RpcContext<'_>, _req: Empty, sink: UnarySink<Empty>) { in read_characteristic() method
527 client.read_characteristic(0, 0, 0); in read_characteristic()
/packages/modules/Bluetooth/floss/pandora/floss/
Dgatt_client.py808 def read_characteristic(self, address, handle, auth_req): member in FlossGattClient
/packages/modules/Bluetooth/system/gd/rust/linux/service/src/
Diface_bluetooth_gatt.rs801 fn read_characteristic(&self, client_id: i32, addr: RawAddress, handle: i32, auth_req: i32) { in read_characteristic() method
/packages/modules/Bluetooth/system/gd/rust/topshim/src/profiles/
Dgatt.rs1223 pub fn read_characteristic(&self, conn_id: i32, handle: u16, auth_req: i32) -> BtStatus { in read_characteristic() method
1224 BtStatus::from(ccall!(self, read_characteristic, conn_id, handle, auth_req)) in read_characteristic()
/packages/modules/Bluetooth/system/gd/rust/linux/client/src/
Dcommand_handler.rs1284 .read_characteristic(client_id, addr, handle, auth_req); in cmd_gatt()
Ddbus_iface.rs1676 fn read_characteristic(&self, client_id: i32, addr: RawAddress, handle: i32, auth_req: i32) { in read_characteristic() method
/packages/modules/Bluetooth/android/app/jni/
Dcom_android_bluetooth_gatt.cpp1452 sGattIf->client->read_characteristic(conn_id, handle, authReq); in gattClientReadCharacteristicNative()