Home | History | Annotate | Download | only in Driver

Lines Matching refs:Command

1 //===--- Job.cpp - Command to Execute -------------------------------------===//
30 Command::Command(const Action &Source, const Tool &Creator,
82 void Command::printArg(raw_ostream &OS, const char *Arg, bool Quote) {
100 void Command::writeResponseFile(raw_ostream &OS) const {
126 void Command::buildArgvForResponseFile(
155 void Command::Print(raw_ostream &OS, const char *Terminator, bool Quote,
225 void Command::setResponseFile(const char *FileName) {
231 int Command::Execute(const StringRef **Redirects, std::string *ErrMsg,
246 // We need to put arguments in a response file (command is too large)
276 std::unique_ptr<Command> Fallback_)
277 : Command(Source_, Creator_, Executable_, Arguments_, Inputs),
282 Command::Print(OS, "", Quote, CrashInfo);
296 int PrimaryStatus = Command::Execute(Redirects, ErrMsg, ExecutionFailed);
318 : Command(Source_, Creator_, Executable_, Arguments_, Inputs) {}
322 Command::Print(OS, "", Quote, CrashInfo);
329 int Status = Command::Execute(Redirects, ErrMsg, ExecutionFailed);