Home
last modified time | relevance | path

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

/packages/modules/Bluetooth/system/rust/src/connection/
Dffi.rs50 fn create_le_connection(&self, address: AddressWithType, is_direct: bool); in create_le_connection() function
162 self.0.create_le_connection(address, /* is_direct= */ true) in add_to_direct_list()
166 self.0.create_le_connection(address, /* is_direct= */ false) in add_to_background_list()
/packages/modules/Bluetooth/system/gd/hci/acl_manager/
Dle_impl_test.cc506 le_impl_->create_le_connection( in TEST_F()
544 le_impl_->create_le_connection( in TEST_F()
587 le_impl_->create_le_connection(address_with_type, true, false); in TEST_F()
624 le_impl_->create_le_connection(address_with_type, true, false); in TEST_F()
1571 le_impl_->create_le_connection(address, true, /* is_direct */ false); in TEST_F()
1580 le_impl_->create_le_connection(address, true, /* is_direct */ true); in TEST_F()
Dle_impl.h410 create_le_connection(remote_address, false, false); in on_le_connection_complete()
420 …handler_->Post(common::BindOnce(&le_impl::create_le_connection, common::Unretained(this), empty, f… in on_le_connection_complete()
956 …void create_le_connection(AddressWithType address_with_type, bool add_to_accept_list, bool is_dire… in create_le_connection() function
/packages/modules/Bluetooth/system/gd/hci/
Dacl_manager.cc269 CallOn(pimpl_->le_impl_, &le_impl::create_le_connection, address_with_type, true, is_direct); in CreateLeConnection()