HomeSort by relevance Sort by last modified time
    Searched full:cmdpath (Results 1 - 2 of 2) sorted by null

  /external/llvm/tools/bugpoint/
ToolRunner.cpp 391 std::string &CmdPath, std::vector<std::string> &Args) {
418 CmdPath = *Path;
420 Message = "Found command in: " + CmdPath + "\n";
429 std::string CmdPath;
431 lexCommand(Message, CompileCommandLine, CmdPath, Args);
432 if (CmdPath.empty())
435 return new CustomCompiler(CmdPath, Args);
445 std::string CmdPath;
447 lexCommand(Message, ExecCommandLine, CmdPath, Args);
448 if (CmdPath.empty()
    [all...]
  /frameworks/native/cmds/dumpstate/
utils.cpp 137 char cmdpath[255]; local
146 snprintf(cmdpath, sizeof(cmdpath), "/proc/%d/cmdline", pid);
147 if ((fd = TEMP_FAILURE_RETRY(open(cmdpath, O_RDONLY | O_CLOEXEC))) >= 0) {
157 snprintf(cmdpath, sizeof(cmdpath), "/proc/%d/comm", pid);
158 if ((fd = TEMP_FAILURE_RETRY(open(cmdpath, O_RDONLY | O_CLOEXEC))) >= 0) {
    [all...]

Completed in 108 milliseconds