Home
last modified time | relevance | path

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

/system/bt/gd/
Dmodule.cc59 auto instance = started_modules_.find(module); in Get()
60 ASSERT(instance != started_modules_.end()); in Get()
65 return started_modules_.find(module) != started_modules_.end(); in IsStarted()
80 auto started_instance = started_modules_.find(module); in Start()
81 if (started_instance != started_modules_.end()) { in Start()
98 started_modules_[module] = instance; in Start()
106 auto instance = started_modules_.find(*it); in StopAll()
107 ASSERT(instance != started_modules_.end()); in StopAll()
118 auto instance = started_modules_.find(*it); in StopAll()
119 ASSERT(instance != started_modules_.end()); in StopAll()
[all …]
Dmodule.h157 std::map<const ModuleFactory*, Module*> started_modules_; variable
177 started_modules_[module] = instance; in InjectTestModule()