Home
last modified time | relevance | path

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

/developtools/profiler/device/base/test/unittest/
Dcommon_test.cpp71 HWTEST_F(CommonTest, IsProcessExist, TestSize.Level1)
75 EXPECT_TRUE(COMMON::IsProcessExist(procName, pid));
79 EXPECT_FALSE(COMMON::IsProcessExist(invalidProcName, pid));
/developtools/profiler/device/cmds/src/
Dmain.cpp368 if (!COMMON::IsProcessExist(HIPROFILERD_NAME, g_hiprofilerdPid)) { in StartDependentProcess()
377 if (!COMMON::IsProcessExist(HIPROFILER_PLUGINS_NAME, g_hiprofilerPluginsPid)) { in StartDependentProcess()
386 if (!COMMON::IsProcessExist(NATIVE_DAEMON_NAME, g_nativeDaemonPid)) { in StartDependentProcess()
422 COMMON::IsProcessExist(NATIVE_DAEMON_NAME, g_nativeDaemonPid); in KillDependentProcess()
425 COMMON::IsProcessExist(HIPROFILER_PLUGINS_NAME, g_hiprofilerPluginsPid); in KillDependentProcess()
428 COMMON::IsProcessExist(HIPROFILERD_NAME, g_hiprofilerdPid); in KillDependentProcess()
/developtools/profiler/device/base/include/
Dcommon.h25 bool IsProcessExist(const std::string& processName, int& pid); // Check if the process exists and g…
/developtools/profiler/device/plugins/native_daemon/src/
Dmain.cpp187 bool isExist = COMMON::IsProcessExist(processName, pidValue); in GetHookedProceInfo()
Dhook_manager.cpp77 bool isExist = COMMON::IsProcessExist(processName, pidValue); in CheckProcessName()
/developtools/profiler/device/base/src/
Dcommon.cpp101 bool IsProcessExist(const std::string& processName, int& pid) in IsProcessExist() function