Lines Matching refs:COMMON
90 return COMMON::GetServicePort(); in GetServicePort()
368 if (!COMMON::IsProcessExist(HIPROFILERD_NAME, g_hiprofilerdPid)) { in StartDependentProcess()
372 g_hiprofilerdPid = COMMON::StartProcess(HIPROFILERD_NAME, argvVec); in StartDependentProcess()
377 if (!COMMON::IsProcessExist(HIPROFILER_PLUGINS_NAME, g_hiprofilerPluginsPid)) { in StartDependentProcess()
381 g_hiprofilerPluginsPid = COMMON::StartProcess(HIPROFILER_PLUGINS_NAME, argvVec); in StartDependentProcess()
386 if (!COMMON::IsProcessExist(NATIVE_DAEMON_NAME, g_nativeDaemonPid)) { in StartDependentProcess()
390 g_nativeDaemonPid = COMMON::StartProcess(NATIVE_DAEMON_NAME, argvVec); 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()
431 COMMON::KillProcess(g_nativeDaemonPid); in KillDependentProcess()
432 COMMON::KillProcess(g_hiprofilerPluginsPid); in KillDependentProcess()
433 COMMON::KillProcess(g_hiprofilerdPid); in KillDependentProcess()
451 if (!COMMON::ReadFile(configFileWithPath, validPaths, config)) { in ParseConfig()