Lines Matching refs:cmd
82 bool RunCommand(const std::string& cmd) in RunCommand() argument
84 HILOG_INFO(LOG_CORE, "run command: %s", cmd.c_str()); in RunCommand()
87 COMMON::SplitString(cmd, " ", cmdArg); in RunCommand()
123 for (const auto &cmd : cmds) { in HiperfPluginSessionStart() local
124 res = RunCommand(cmd); in HiperfPluginSessionStart()
125 CHECK_TRUE(res, -1, "HiperfPluginSessionStart, RunCommand(%s) FAILED!", cmd.c_str()); in HiperfPluginSessionStart()
134 std::string cmd; in HiperfPluginSessionStop() local
136 cmd = SU_ROOT; in HiperfPluginSessionStop()
138 cmd += HIPERF_CMD + g_logLevel + HIPERF_RECORD_CMD; in HiperfPluginSessionStop()
139 cmd += HIPERF_RECORD_STOP; in HiperfPluginSessionStop()
140 RunCommand(cmd); in HiperfPluginSessionStop()