Home
last modified time | relevance | path

Searched refs:argvVec (Results 1 – 2 of 2) sorted by relevance

/developtools/profiler/device/cmds/src/
Dmain.cpp400 std::vector<char*> argvVec; in StartDependentProcess() local
401 argvVec.push_back(const_cast<char*>(HIPROFILERD_NAME.c_str())); in StartDependentProcess()
402 g_hiprofilerdPid = COMMON::StartProcess(HIPROFILERD_NAME, argvVec); in StartDependentProcess()
409 std::vector<char*> argvVec; in StartDependentProcess() local
410 argvVec.push_back(const_cast<char*>(HIPROFILER_PLUGINS_NAME.c_str())); in StartDependentProcess()
411 g_hiprofilerPluginsPid = COMMON::StartProcess(HIPROFILER_PLUGINS_NAME, argvVec); in StartDependentProcess()
418 std::vector<char*> argvVec; in StartDependentProcess() local
419 argvVec.push_back(const_cast<char*>(NATIVE_DAEMON_NAME.c_str())); in StartDependentProcess()
420 g_nativeDaemonPid = COMMON::StartProcess(NATIVE_DAEMON_NAME, argvVec); in StartDependentProcess()
/developtools/profiler/device/base/test/unittest/
Dcommon_test.cpp92 std::vector<char*> argvVec; variable
93 argvVec.push_back(const_cast<char*>(profilerProcName.c_str()));
96 int procPid = COMMON::StartProcess(profilerProcName, argvVec);