Home
last modified time | relevance | path

Searched refs:cmdStr (Results 1 – 6 of 6) sorted by relevance

/developtools/profiler/device/cmds/test/unittest/
Dhiprofiler_cmd_test.cpp220 std::string cmdStr = in CreateCommand() local
223 cmdStr += "-o " + outFile + " \\\n"; in CreateCommand()
224 cmdStr += "-t " + std::to_string(time) + " \\\n"; in CreateCommand()
225 cmdStr += "-k \\\n" in CreateCommand()
258 return cmdStr; in CreateCommand()
263 std::string cmdStr = in CreateHiperfCommand() local
266 cmdStr += "-o " + outFile + " \\\n"; in CreateHiperfCommand()
267 cmdStr += "-t " + std::to_string(time) + " \\\n"; in CreateHiperfCommand()
268 cmdStr += "-k \\\n" in CreateHiperfCommand()
289 return cmdStr; in CreateHiperfCommand()
[all …]
Dparse_plugin_config_test.cpp34 std::string cmdStr = " request_id: 1" in CreateCommand() local
48 config = parseConfig.GetPluginsConfig(cmdStr); in CreateCommand()
/developtools/integration_verification/tools/fotff/utils/
Dexec.go43 cmdStr := append([]string{name}, args...)
44 logrus.Infof("cmd: %s", cmdStr)
57 fmt.Printf("[%s] exec %s :\n", time.Now(), cmdStr)
78 cmdStr := append([]string{name}, args...)
79 logrus.Infof("cmd: %s", cmdStr)
81 fmt.Printf("[%s] exec %s :\n", time.Now(), cmdStr)
/developtools/profiler/host/smartperf/client/client_command/
Dsmartperf_command.cpp33 std::string cmdStr = "taskset -p f " + pid; in SmartPerfCommand() local
35 SPUtils::LoadCmd(cmdStr, result); in SmartPerfCommand()
/developtools/smartperf_host/ide/src/trace/component/trace/sheet/
DTabPaneFilter.ts695 …let dataCmd: { id: number; cmdStr: string }[] = (await queryTransferList()) as { id: number; cmdSt…
697 dataCmd.forEach((item: { id: number; cmdStr: string }): void => {
699 …er" class="radio" type="radio" value="${item.id}" style="margin-right:8px" />${item.cmdStr}</div>`;
/developtools/smartperf_host/ide/src/trace/database/sql/
DPerf.sql.ts312 export const queryTransferList = (): Promise<Array<{ id: number; cmdStr: string }>> =>