Lines Matching refs:Command
313 Command::Command(std::string executable, SubprocessStopper stopper) in Command() function in cuttlefish::Command
321 Command::~Command() { in ~Command()
332 void Command::BuildParameter(std::stringstream* stream, SharedFD shared_fd) { in BuildParameter()
345 Command& Command::RedirectStdIO(Subprocess::StdIOChannel channel, in RedirectStdIO()
356 Command Command::RedirectStdIO(Subprocess::StdIOChannel channel, in RedirectStdIO()
361 Command& Command::RedirectStdIO(Subprocess::StdIOChannel subprocess_channel, in RedirectStdIO()
366 Command Command::RedirectStdIO(Subprocess::StdIOChannel subprocess_channel, in RedirectStdIO()
372 Command& Command::SetWorkingDirectory(const std::string& path) & { in SetWorkingDirectory()
384 Command Command::SetWorkingDirectory(const std::string& path) && { in SetWorkingDirectory()
387 Command& Command::SetWorkingDirectory(SharedFD dirfd) & { in SetWorkingDirectory()
392 Command Command::SetWorkingDirectory(SharedFD dirfd) && { in SetWorkingDirectory()
396 Command& Command::AddPrerequisite( in AddPrerequisite()
402 Command Command::AddPrerequisite( in AddPrerequisite()
408 Subprocess Command::Start(SubprocessOptions options) const { in Start()
516 std::string Command::AsBashScript( in AsBashScript()
544 int RunWithManagedStdio(Command&& cmd_tmp, const std::string* stdin_str, in RunWithManagedStdio()
560 Command cmd = std::move(cmd_tmp); in RunWithManagedStdio()
619 Command forceDelete = std::move(cmd); in RunWithManagedStdio()
645 Command cmd(command[0]); in ExecuteImpl()