Home
last modified time | relevance | path

Searched refs:read_phy (Results 1 – 10 of 10) sorted by relevance

/packages/modules/Bluetooth/system/gd/rust/topshim/gatt/
Dgatt_shim.cc39 int GattClientIntf::read_phy(int client_if, RawAddress addr) { in read_phy() function in bluetooth::topshim::rust::GattClientIntf
40 return client_intf_->read_phy(addr, base::Bind(&internal::ReadPhyCallback, client_if, addr)); in read_phy()
48 return server_intf_->read_phy( in server_read_phy()
Dgatt_shim.h34 int read_phy(int client_if, RawAddress bt_addr);
/packages/modules/Bluetooth/system/blueberry/tests/topshim/lib/
Dgatt_client.py317 async def read_phy(self): member in GattClient
382 async def read_phy(self): member in GattClient
/packages/modules/Bluetooth/system/include/hardware/
Dbt_gatt_server.h185 bt_status_t (*read_phy)( member
Dbt_gatt_client.h306 bt_status_t (*read_phy)( member
/packages/modules/Bluetooth/system/gd/rust/topshim/src/profiles/
Dgatt.rs110 fn read_phy(self: Pin<&mut GattClientIntf>, client_if: i32, bt_addr: RawAddress) -> i32; in read_phy() function
1357 pub fn read_phy(&mut self, client_if: i32, addr: &RawAddress) -> BtStatus { in read_phy() method
1358 BtStatus::from_i32(mutcxxcall!(self, read_phy, client_if, *addr)).unwrap() in read_phy()
1453 pub fn read_phy(&mut self, server_if: i32, addr: &RawAddress) -> BtStatus { in read_phy() method
/packages/modules/Bluetooth/floss/pandora/floss/
Dgatt_client.py993 def read_phy(self, address): member in FlossGattClient
/packages/modules/Bluetooth/system/gd/rust/topshim/facade/src/
Dgatt_service.rs651 client.read_phy(0, &self.create_raw_address()); in client_read_phy()
/packages/modules/Bluetooth/android/app/jni/
Dcom_android_bluetooth_gatt.cpp1407 sGattIf->client->read_phy(bda, base::Bind(&readClientPhyCb, clientIf, bda)); in gattClientReadPhyNative()
1983 sGattIf->server->read_phy(bda, base::Bind(&readServerPhyCb, serverIf, bda)); in gattServerReadPhyNative()
/packages/modules/Bluetooth/system/gd/rust/linux/stack/src/
Dbluetooth_gatt.rs2721 self.gatt.as_ref().unwrap().lock().unwrap().client.read_phy(client_id, &addr); in client_read_phy()
2890 self.gatt.as_ref().unwrap().lock().unwrap().server.read_phy(server_id, &addr); in server_read_phy()