Home
last modified time | relevance | path

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

/developtools/hdc/src/common/
Dasync_cmd.cpp175 string shellPath = Base::GetShellPath(); in Popen()
176 execl(shellPath.c_str(), shellPath.c_str(), "-c", command.c_str(), NULL); in Popen()
Dbase.cpp919 string shellPath = "/bin/sh"; in GetShellPath() local
920 if (stat(shellPath.c_str(), &filecheck) < 0) { in GetShellPath()
921 shellPath = "/system/bin/sh"; in GetShellPath()
922 if (stat(shellPath.c_str(), &filecheck) < 0) { in GetShellPath()
923 shellPath = "sh"; in GetShellPath()
926 return shellPath; in GetShellPath()