Home
last modified time | relevance | path

Searched refs:nameList (Results 1 – 5 of 5) sorted by relevance

/developtools/profiler/device/services/plugin_service/src/
Dplugin_session_manager.cpp124 bool PluginSessionManager::RemovePluginSessions(const std::vector<std::string>& nameList) in RemovePluginSessions() argument
126 CHECK_TRUE(nameList.size() > 0, false, "nameList empty!"); in RemovePluginSessions()
128 for (auto& name : nameList) { in RemovePluginSessions()
138 bool PluginSessionManager::InvalidatePluginSessions(const std::vector<std::string>& nameList) in InvalidatePluginSessions() argument
140 CHECK_TRUE(nameList.size() > 0, false, "nameList empty!"); in InvalidatePluginSessions()
142 for (auto& name : nameList) { in InvalidatePluginSessions()
152 bool PluginSessionManager::StartPluginSessions(const std::vector<std::string>& nameList) in StartPluginSessions() argument
154 CHECK_TRUE(nameList.size() > 0, false, "nameList empty!"); in StartPluginSessions()
155 pluginNameList_ = std::move(nameList); in StartPluginSessions()
159 for (auto& name : nameList) { in StartPluginSessions()
[all …]
/developtools/profiler/device/services/plugin_service/include/
Dplugin_session_manager.h37 bool RemovePluginSessions(const std::vector<std::string>& nameList);
39 bool InvalidatePluginSessions(const std::vector<std::string>& nameList);
41 bool StartPluginSessions(const std::vector<std::string>& nameList);
42 bool StopPluginSessions(const std::vector<std::string>& nameList);
45 bool CheckStatus(const std::vector<std::string>& nameList, PluginSession::State state);
46 std::vector<PluginSession::State> GetStatus(const std::vector<std::string>& nameList);
/developtools/packing_tool/adapter/ohos/
DHapVerifyInfo.java240 public void addAbilityNames(List<String> nameList) { in addAbilityNames() argument
241 this.abilityNames.addAll(nameList); in addAbilityNames()
DCompressor.java2118 String[] nameList = formName.split("\\."); in getNameFromString() local
2119 if (nameList.length <= 1) { in getNameFromString()
/developtools/profiler/device/services/plugin_service/test/unittest/
Dplugin_service_test.cpp1045 std::vector<std::string> nameList{"testsample.so", "testsample1.so"}; variable
1046 EXPECT_TRUE(pluginSessionMgr_->InvalidatePluginSessions(nameList));
1047 std::vector<PluginSession::State> vecRet = pluginSessionMgr_->GetStatus(nameList);