Home
last modified time | relevance | path

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

/system/bt/gd/
Dmodule.cc58 auto instance = started_modules_.find(module); in Get()
59 ASSERT(instance != started_modules_.end()); in Get()
64 return started_modules_.find(module) != started_modules_.end(); in IsStarted()
79 auto started_instance = started_modules_.find(module); in Start()
80 if (started_instance != started_modules_.end()) { in Start()
92 started_modules_[module] = instance; in Start()
99 auto instance = started_modules_.find(*it); in StopAll()
100 ASSERT(instance != started_modules_.end()); in StopAll()
110 auto instance = started_modules_.find(*it); in StopAll()
111 ASSERT(instance != started_modules_.end()); in StopAll()
[all …]
Dmodule.h157 std::map<const ModuleFactory*, Module*> started_modules_; variable
176 started_modules_[module] = instance; in InjectTestModule()