Home
last modified time | relevance | path

Searched refs:RemoteNameRequestModule (Results 1 – 11 of 11) sorted by relevance

/aosp_15_r20/packages/modules/Bluetooth/system/gd/hci/
Dremote_name_request.cc29 struct RemoteNameRequestModule::impl {
31 impl(const RemoteNameRequestModule& module) : module_(module) {} in impl()
41 handler_->BindOn(this, &RemoteNameRequestModule::impl:: in Start()
46 &RemoteNameRequestModule::impl::on_remote_name_request_complete)); in Start()
211 const RemoteNameRequestModule& module_;
221 const ModuleFactory RemoteNameRequestModule::Factory =
222 ModuleFactory([]() { return new RemoteNameRequestModule(); }); in __anon77d0cf290202()
224 RemoteNameRequestModule::RemoteNameRequestModule() : pimpl_(std::make_unique<impl>(*this)) {} in RemoteNameRequestModule() function in bluetooth::hci::RemoteNameRequestModule
225 RemoteNameRequestModule::~RemoteNameRequestModule() = default;
227 void RemoteNameRequestModule::StartRemoteNameRequest( in StartRemoteNameRequest()
[all …]
Dremote_name_request.h42 class RemoteNameRequestModule : public bluetooth::Module {
71 RemoteNameRequestModule();
72 ~RemoteNameRequestModule();
Dremote_name_request_test.cc70 fake_registry_.Start<RemoteNameRequestModule>(&thread_); in SetUp()
71 ASSERT_TRUE(fake_registry_.IsStarted<RemoteNameRequestModule>()); in SetUp()
73 client_handler_ = fake_registry_.GetTestModuleHandler(&RemoteNameRequestModule::Factory); in SetUp()
76 remote_name_request_module_ = static_cast<RemoteNameRequestModule*>( in SetUp()
77 fake_registry_.GetModuleUnderTest(&RemoteNameRequestModule::Factory)); in SetUp()
83 fake_registry_.SynchronizeModuleHandler(&RemoteNameRequestModule::Factory, timeout); in TearDown()
121 RemoteNameRequestModule* remote_name_request_module_ = nullptr;
650 [](RemoteNameRequestModule* remote_name_request_module, HciLayerFake* test_hci_layer, in TEST_F()
Dacl_manager.cc78 remote_name_request_module_ = acl_manager_.GetDependency<RemoteNameRequestModule>(); in Start()
194 RemoteNameRequestModule* remote_name_request_module_ = nullptr;
401 list->add<RemoteNameRequestModule>(); in ListDependencies()
/aosp_15_r20/packages/modules/Bluetooth/system/gd/neighbor/
Dname_db.cc60 hci::RemoteNameRequestModule* name_module_;
147 name_module_ = module_.GetDependency<hci::RemoteNameRequestModule>(); in Start()
157 list->add<hci::RemoteNameRequestModule>(); in ListDependencies()
/aosp_15_r20/packages/modules/Bluetooth/system/main/shim/
Dentry.h44 class RemoteNameRequestModule; variable
73 hci::RemoteNameRequestModule* GetRemoteNameRequest();
Dentry.cc55 hci::RemoteNameRequestModule* GetRemoteNameRequest() { in GetRemoteNameRequest()
56 return Stack::GetInstance()->GetStackManager()->GetInstance<hci::RemoteNameRequestModule>(); in GetRemoteNameRequest()
Dstack.cc93 modules.add<hci::RemoteNameRequestModule>(); in StartEverything()
/aosp_15_r20/packages/modules/Bluetooth/system/gd/hci/acl_manager/
Dclassic_impl_test.cc173 rnr_ = new RemoteNameRequestModule(); in SetUp()
201 RemoteNameRequestModule* rnr_;
Dclassic_impl.h55 AclScheduler* acl_scheduler, RemoteNameRequestModule* remote_name_request_module) in classic_impl()
387 [=](RemoteNameRequestModule* remote_name_request_module, Address address, in on_connection_complete()
751 RemoteNameRequestModule* remote_name_request_module_ = nullptr;
/aosp_15_r20/packages/modules/Bluetooth/system/test/mock/
Dmock_main_shim_entry.cc66 hci::RemoteNameRequestModule* GetRemoteNameRequest() { return nullptr; } in GetRemoteNameRequest()