Lines Matching refs:started_modules_
59 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()
122 started_modules_.erase(instance); in StopAll()
125 ASSERT(started_modules_.empty()); in StopAll()
130 auto started_instance = started_modules_.find(module); in GetModuleHandler()
131 if (started_instance != started_modules_.end()) { in GetModuleHandler()
148 auto instance = module_registry_.started_modules_.find(*it); in DumpState()
149 ASSERT(instance != module_registry_.started_modules_.end()); in DumpState()