• Home
  • Raw
  • Download

Lines Matching refs:BluetoothIntf

36 static BluetoothIntf* g_btif;
167 BluetoothIntf::BluetoothIntf() : init_(false) {} in BluetoothIntf() function in bluetooth::topshim::rust::BluetoothIntf
169 BluetoothIntf::~BluetoothIntf() { in ~BluetoothIntf()
181 void BluetoothIntf::ConvertFlags(::rust::Vec<::rust::String>& initFlags) { in ConvertFlags()
195 bool BluetoothIntf::Initialize(::rust::Box<RustCallbacks> callbacks, ::rust::Vec<::rust::String> in… in Initialize()
220 void BluetoothIntf::CleanUp() const { in CleanUp()
224 int BluetoothIntf::Enable() const { in Enable()
228 int BluetoothIntf::Disable() const { in Disable()
232 int BluetoothIntf::GetAdapterProperties() const { in GetAdapterProperties()
236 int BluetoothIntf::GetAdapterProperty(int prop) const { in GetAdapterProperty()
250 int BluetoothIntf::SetAdapterProperty(const BtProperty& prop) const { in SetAdapterProperty()
255 int BluetoothIntf::GetRemoteDeviceProperties(const RustRawAddress& address) const { in GetRemoteDeviceProperties()
261 int BluetoothIntf::GetRemoteDeviceProperty(const RustRawAddress& address, int prop_type) const { in GetRemoteDeviceProperty()
266 int BluetoothIntf::SetRemoteDeviceProperty(const RustRawAddress& address, const BtProperty& prop) c… in SetRemoteDeviceProperty()
273 int BluetoothIntf::GetRemoteServices(const RustRawAddress& address) const { in GetRemoteServices()
279 int BluetoothIntf::StartDiscovery() const { in StartDiscovery()
283 int BluetoothIntf::CancelDiscovery() const { in CancelDiscovery()
287 int BluetoothIntf::CreateBond(const RustRawAddress& address, int transport) const { in CreateBond()
293 int BluetoothIntf::RemoveBond(const RustRawAddress& address) const { in RemoveBond()
299 int BluetoothIntf::CancelBond(const RustRawAddress& address) const { in CancelBond()
305 int BluetoothIntf::GetConnectionState(const RustRawAddress& address) const { in GetConnectionState()
311 int BluetoothIntf::PinReply( in PinReply()
321 int BluetoothIntf::SspReply(const RustRawAddress& address, int ssp_variant, uint8_t accept, uint32_… in SspReply()
327 std::unique_ptr<BluetoothIntf> Load() { in Load()
331 auto btif = std::make_unique<BluetoothIntf>(); in Load()