Home
last modified time | relevance | path

Searched refs:RustRawAddress (Results 1 – 4 of 4) sorted by relevance

/aosp12/system/bt/gd/rust/topshim/src/
H A Dbtif.rs95 pub struct RustRawAddress { struct
142 address: &RustRawAddress, in PinReply() argument
149 address: &RustRawAddress, in SspReply() argument
200 address: RustRawAddress, in remote_device_properties_callback() argument
212 remote_addr: RustRawAddress, in pin_request_callback() argument
219 remote_addr: RustRawAddress, in ssp_request_callback() argument
364 address: ffi::RustRawAddress, in remote_device_properties_callback() argument
387 remote_addr: ffi::RustRawAddress, in pin_request_callback() argument
396 remote_addr: ffi::RustRawAddress, in ssp_request_callback() argument
407 remote_addr: ffi::RustRawAddress, in bond_state_changed_callback() argument
[all …]
/aosp12/system/bt/gd/rust/topshim/btif/
H A Dbtif_shim.h30 struct RustRawAddress;
50 int GetRemoteDeviceProperties(const RustRawAddress& address) const;
51 int GetRemoteDeviceProperty(const RustRawAddress& address, int prop_type) const;
52 int SetRemoteDeviceProperty(const RustRawAddress& address, const BtProperty& prop) const;
54 int GetRemoteServices(const RustRawAddress& address) const;
59 int CreateBond(const RustRawAddress& address, int transport) const;
60 int RemoveBond(const RustRawAddress& address) const;
61 int CancelBond(const RustRawAddress& address) const;
63 int GetConnectionState(const RustRawAddress& address) const;
65 …int PinReply(const RustRawAddress& address, uint8_t accept, uint8_t pin_len, const BtPinCode& code…
[all …]
H A Dbtif_shim.cc59 static RustRawAddress to_rust_address(RawAddress* address) { in to_rust_address()
60 RustRawAddress raddr; in to_rust_address()
66 static RawAddress from_rust_address(const RustRawAddress& address) { in from_rust_address()
92 RustRawAddress addr = to_rust_address(bd_addr); in remote_device_properties_cb()
107 RustRawAddress addr = to_rust_address(remote_bd_addr); in pin_request_cb()
119 RustRawAddress addr = to_rust_address(remote_bd_addr); in ssp_request_cb()
126 RustRawAddress addr = to_rust_address(remote_bd_addr); in bond_state_changed_cb()
133 RustRawAddress addr = to_rust_address(remote_bd_addr); in acl_state_changed_cb()
273 int BluetoothIntf::GetRemoteServices(const RustRawAddress& address) const { in GetRemoteServices()
293 int BluetoothIntf::RemoveBond(const RustRawAddress& address) const { in RemoveBond()
[all …]
/aosp12/system/bt/gd/rust/linux/adapter/src/
H A Dmain.rs20 RemoteDevicePropertiesChanged(i32, ffi::RustRawAddress, i32, Vec<ffi::BtProperty>),