Lines Matching refs:Program
1 //===- llvm/Support/Unix/Program.inc ----------------------------*- C++ -*-===//
9 // This file implements the Unix specific portion of the Program class.
18 #include "llvm/Support/Program.h"
175 static bool Execute(ProcessInfo &PI, StringRef Program,
181 if (!llvm::sys::fs::exists(Program)) {
183 *ErrMsg = std::string("Executable \"") + Program.str() +
259 Err = posix_spawn(&PID, Program.str().c_str(), FileActions,
326 std::string PathStr = std::string(Program);
503 *ErrMsg = "Program could not be executed";
566 bool llvm::sys::commandLineFitsWithinSystemLimits(StringRef Program,
588 size_t ArgLength = Program.size() + 1;