Lines Matching refs:started_modules_
58 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()
114 started_modules_.erase(instance); in StopAll()
117 ASSERT(started_modules_.empty()); in StopAll()
122 auto started_instance = started_modules_.find(module); in GetModuleHandler()
123 if (started_instance != started_modules_.end()) { in GetModuleHandler()
137 auto instance = module_registry_.started_modules_.find(*it); in DumpState()
138 ASSERT(instance != module_registry_.started_modules_.end()); in DumpState()