Home
last modified time | relevance | path

Searched refs:GattClientIntf (Results 1 – 3 of 3) sorted by relevance

/packages/modules/Bluetooth/system/gd/rust/topshim/gatt/
Dgatt_shim.h29 class GattClientIntf {
31 GattClientIntf(const btgatt_client_interface_t* client_intf) : client_intf_(client_intf){}; in GattClientIntf() function
32 ~GattClientIntf() = default;
40 std::unique_ptr<GattClientIntf> GetGattClientProfile(const unsigned char* gatt_intf);
Dgatt_shim.cc39 int GattClientIntf::read_phy(int client_if, RawAddress addr) { in read_phy()
43 std::unique_ptr<GattClientIntf> GetGattClientProfile(const unsigned char* gatt_intf) { in GetGattClientProfile()
44 …return std::make_unique<GattClientIntf>(reinterpret_cast<const btgatt_interface_t*>(gatt_intf)->cl… in GetGattClientProfile()
/packages/modules/Bluetooth/system/gd/rust/topshim/src/profiles/
Dgatt.rs106 type GattClientIntf; typedef
108 unsafe fn GetGattClientProfile(btif: *const u8) -> UniquePtr<GattClientIntf>; in GetGattClientProfile() argument
110 fn read_phy(self: Pin<&mut GattClientIntf>, client_if: i32, bt_addr: RawAddress) -> i32; in read_phy() argument
1171 internal_cxx: cxx::UniquePtr<ffi::GattClientIntf>,