Home
last modified time | relevance | path

Searched refs:nameList (Results 1 – 7 of 7) 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.java2422 String[] nameList = formName.split("\\."); in getNameFromString() local
2423 if (nameList.length <= 1) { in getNameFromString()
/developtools/smartperf_host/ide/src/trace/component/chart/
DSpHiSysEnergyChart.ts400 let nameList: Array<TreeItemData> = [];
403 nameList.push({
409 this.energyTraceRow.rowSettingList = nameList;
/developtools/profiler/device/services/plugin_service/test/unittest/
Dplugin_service_test.cpp1040 std::vector<std::string> nameList{"testsample.so", "testsample1.so"}; variable
1041 EXPECT_TRUE(pluginSessionMgr_->InvalidatePluginSessions(nameList));
1042 std::vector<PluginSession::State> vecRet = pluginSessionMgr_->GetStatus(nameList);
/developtools/ace_ets2bundle/compiler/src/
Dprocess_component_member.ts687 export function findDecoratorIndex(decorators: readonly ts.Decorator[], nameList: string[]): number…
689 return nameList.includes(item.getText().replace(/\(.*\)$/, '').trim());