Home
last modified time | relevance | path

Searched refs:started_modules_ (Results 1 – 3 of 3) sorted by relevance

/packages/modules/Bluetooth/system/gd/
Dmodule.cc61 auto instance = started_modules_.find(module); in Get()
63 instance != started_modules_.end(), in Get()
69 return started_modules_.find(module) != started_modules_.end(); in IsStarted()
84 auto started_instance = started_modules_.find(module); in Start()
85 if (started_instance != started_modules_.end()) { in Start()
102 started_modules_[module] = instance; in Start()
110 auto instance = started_modules_.find(*it); in StopAll()
112 instance != started_modules_.end(), "assert failed: instance != started_modules_.end()"); in StopAll()
123 auto instance = started_modules_.find(*it); in StopAll()
125 instance != started_modules_.end(), "assert failed: instance != started_modules_.end()"); in StopAll()
[all …]
Dmodule_dumper.cc54 auto instance = module_registry_.started_modules_.find(*it); in DumpState()
56 instance != module_registry_.started_modules_.end(), in DumpState()
Dmodule.h169 std::map<const ModuleFactory*, Module*> started_modules_; variable
178 started_modules_[module] = instance; in InjectTestModule()