Home
last modified time | relevance | path

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

/system/bt/gd/rust/topshim/btif/
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 …]
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()
255 int BluetoothIntf::GetRemoteDeviceProperties(const RustRawAddress& address) const { in GetRemoteDeviceProperties()
261 int BluetoothIntf::GetRemoteDeviceProperty(const RustRawAddress& address, int prop_type) const { in GetRemoteDeviceProperty()
[all …]
/system/bt/gd/rust/topshim/src/
Dbtif.rs95 pub struct RustRawAddress { struct
122 fn GetRemoteDeviceProperties(&self, address: &RustRawAddress) -> i32; in GetRemoteDeviceProperties()
123 fn GetRemoteDeviceProperty(&self, address: &RustRawAddress, prop_type: i32) -> i32; in GetRemoteDeviceProperty() argument
124 fn SetRemoteDeviceProperty(&self, address: &RustRawAddress, prop: &BtProperty) -> i32; in SetRemoteDeviceProperty() argument
126 fn GetRemoteServices(&self, address: &RustRawAddress) -> i32; in GetRemoteServices()
131 fn CreateBond(&self, address: &RustRawAddress, transport: i32) -> i32; in CreateBond() argument
135 fn RemoveBond(&self, address: &RustRawAddress) -> i32; in RemoveBond()
136 fn CancelBond(&self, address: &RustRawAddress) -> i32; in CancelBond()
138 fn GetConnectionState(&self, address: &RustRawAddress) -> i32; in GetConnectionState()
142 address: &RustRawAddress, in PinReply() argument
[all …]
/system/bt/gd/rust/linux/adapter/src/
Dmain.rs20 RemoteDevicePropertiesChanged(i32, ffi::RustRawAddress, i32, Vec<ffi::BtProperty>),