Lines Matching refs:Command
50 // Whether the command started successfully. It only says whether the call to
52 // completion of the command, that's what Wait is for.
69 // An executable command. Multiple subprocesses can be started from the same
70 // command object. This class owns any file descriptors that the subprocess
72 class Command {
88 Command(const std::string& executable) {
91 Command(Command&&) = default;
95 Command(const Command&) = delete;
96 Command& operator=(const Command&) = delete;
97 ~Command();
105 // Adds a single parameter to the command. All arguments are concatenated into
108 // object is destroyed. To add multiple parameters to the command the function
120 // Redirects the standard IO of the command.
123 // Starts execution of the command. This method can be called multiple times,
142 // Convenience wrapper around Command and Subprocess class, allows to easily
143 // execute a command and wait for it to complete. The version without the env
144 // parameter starts the command with the same environment as the parent. Returns
145 // zero if the command completed successfully, non zero otherwise.
146 int execute(const std::vector<std::string>& command,
148 int execute(const std::vector<std::string>& command);