Searched refs:read_phy (Results 1 – 10 of 10) sorted by relevance
/packages/modules/Bluetooth/system/gd/rust/topshim/gatt/ |
D | gatt_shim.cc | 39 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()
|
D | gatt_shim.h | 34 int read_phy(int client_if, RawAddress bt_addr);
|
/packages/modules/Bluetooth/system/blueberry/tests/topshim/lib/ |
D | gatt_client.py | 317 async def read_phy(self): member in GattClient 382 async def read_phy(self): member in GattClient
|
/packages/modules/Bluetooth/system/include/hardware/ |
D | bt_gatt_server.h | 185 bt_status_t (*read_phy)( member
|
D | bt_gatt_client.h | 306 bt_status_t (*read_phy)( member
|
/packages/modules/Bluetooth/system/gd/rust/topshim/src/profiles/ |
D | gatt.rs | 110 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/ |
D | gatt_client.py | 993 def read_phy(self, address): member in FlossGattClient
|
/packages/modules/Bluetooth/system/gd/rust/topshim/facade/src/ |
D | gatt_service.rs | 651 client.read_phy(0, &self.create_raw_address()); in client_read_phy()
|
/packages/modules/Bluetooth/android/app/jni/ |
D | com_android_bluetooth_gatt.cpp | 1407 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/ |
D | bluetooth_gatt.rs | 2721 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()
|