Lines Matching refs:ErrMsg
231 int Command::Execute(const StringRef **Redirects, std::string *ErrMsg, in Execute() argument
242 /*memoryLimit*/ 0, ErrMsg, in Execute()
260 if (ErrMsg) in Execute()
261 *ErrMsg = EC.message(); in Execute()
269 /*memoryLimit*/ 0, ErrMsg, ExecutionFailed); in Execute()
294 int FallbackCommand::Execute(const StringRef **Redirects, std::string *ErrMsg, in Execute() argument
296 int PrimaryStatus = Command::Execute(Redirects, ErrMsg, ExecutionFailed); in Execute()
301 if (ErrMsg) in Execute()
302 ErrMsg->clear(); in Execute()
309 int SecondaryStatus = Fallback->Execute(Redirects, ErrMsg, ExecutionFailed); in Execute()
327 std::string *ErrMsg, in Execute() argument
329 int Status = Command::Execute(Redirects, ErrMsg, ExecutionFailed); in Execute()