Lines Matching refs:command
63 const char* const* command, in subprocess_impl() argument
95 rval = execv(command[0], const_cast<char* const*>(command)); in subprocess_impl()
97 rval = execve(command[0], in subprocess_impl()
98 const_cast<char* const*>(command), in subprocess_impl()
102 LOG(ERROR) << "exec of " << command[0] << " failed (" << strerror(errno) in subprocess_impl()
109 LOG(INFO) << "Started (pid: " << pid << "): " << command[0]; in subprocess_impl()
111 while (command[i]) { in subprocess_impl()
112 LOG(INFO) << command[i++]; in subprocess_impl()
247 int execute(const std::vector<std::string>& command, in execute() argument
249 Command cmd(command[0]); in execute()
250 for (size_t i = 1; i < command.size(); ++i) { in execute()
251 cmd.AddParameter(command[i]); in execute()
260 int execute(const std::vector<std::string>& command) { in execute() argument
261 Command cmd(command[0]); in execute()
262 for (size_t i = 1; i < command.size(); ++i) { in execute()
263 cmd.AddParameter(command[i]); in execute()