Home
last modified time | relevance | path

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

/developtools/hdc/src/common/
Dasync_cmd.cpp119 string shellPath = Base::GetShellPath(); in Popen()
120 execl(shellPath.c_str(), shellPath.c_str(), "-c", command.c_str(), NULL); in Popen()
Dbase.cpp872 string shellPath = "/bin/sh"; in GetShellPath() local
873 if (stat(shellPath.c_str(), &filecheck) < 0) { in GetShellPath()
874 shellPath = "/system/bin/sh"; in GetShellPath()
875 if (stat(shellPath.c_str(), &filecheck) < 0) { in GetShellPath()
876 shellPath = "sh"; in GetShellPath()
879 return shellPath; in GetShellPath()