Home
last modified time | relevance | path

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

/developtools/profiler/device/services/plugin_service/src/
Dplugin_session_manager.cpp57 CHECK_TRUE(pluginSessions_.count(name) == 0, nullptr, "plugin name %s exists!", name.c_str()); in CreatePluginSession()
71 CHECK_TRUE(pluginSessions_.count(name) == 0, nullptr, "plugin name %s exists!", name.c_str()); in CreatePluginSession()
99 pluginSessions_.insert(entry); in CreatePluginSessions()
119 pluginSessions_.insert(entry); in CreatePluginSessions()
129 auto it = pluginSessions_.find(name); in RemovePluginSessions()
130 if (it == pluginSessions_.end()) { in RemovePluginSessions()
133 pluginSessions_.erase(it); in RemovePluginSessions()
143 auto it = pluginSessions_.find(name); in InvalidatePluginSessions()
144 if (it == pluginSessions_.end()) { in InvalidatePluginSessions()
160 auto it = pluginSessions_.find(name); in StartPluginSessions()
[all …]
/developtools/profiler/device/services/plugin_service/include/
Dplugin_session_manager.h62 std::map<std::string, PluginSessionPtr> pluginSessions_; variable