Lines Matching refs:cmd
85 bool RunCommand(const std::string& cmd) in RunCommand() argument
87 PROFILER_LOG_INFO(LOG_CORE, "run command: %s", cmd.c_str()); in RunCommand()
90 COMMON::SplitString(cmd, " ", cmdArg); in RunCommand()
135 for (const auto &cmd : cmds) { in HiperfPluginSessionStart() local
136 res = RunCommand(cmd); in HiperfPluginSessionStart()
137 CHECK_TRUE(res, -1, "HiperfPluginSessionStart, RunCommand(%s) FAILED!", cmd.c_str()); in HiperfPluginSessionStart()
151 std::string cmd; in HiperfPluginSessionStop() local
153 cmd = SU_ROOT; in HiperfPluginSessionStop()
155 cmd += HIPERF_CMD + g_logLevel + HIPERF_RECORD_CMD; in HiperfPluginSessionStop()
156 cmd += HIPERF_RECORD_STOP; in HiperfPluginSessionStop()
157 RunCommand(cmd); in HiperfPluginSessionStop()