Searched refs:full_command (Results 1 - 4 of 4) sorted by relevance

/frameworks/native/cmds/dumpstate/
H A DDumpstateUtil.cpp194 int RunCommandToFd(int fd, const std::string& title, const std::vector<std::string>& full_command, argument
196 if (full_command.empty()) {
201 int size = full_command.size() + 1; // null terminated
218 for (size_t i = 0; i < full_command.size(); i++) {
219 args[i + starting_index] = full_command[i].data();
221 if (i != full_command.size() - 1) {
H A DDumpstateUtil.h159 * |full_command| array containing the command (first entry) and its arguments.
163 int RunCommandToFd(int fd, const std::string& title, const std::vector<std::string>& full_command,
H A Dutils.cpp72 static int RunCommand(const std::string& title, const std::vector<std::string>& full_command, argument
74 return ds.RunCommand(title, full_command, options);
705 int Dumpstate::RunCommand(const std::string& title, const std::vector<std::string>& full_command, argument
709 int status = RunCommandToFd(STDOUT_FILENO, title, full_command, options);
/frameworks/native/cmds/dumpstate/tests/
H A Ddumpstate_test.cpp148 int RunCommand(const std::string& title, const std::vector<std::string>& full_command, argument
152 int status = ds.RunCommand(title, full_command, options);
820 int RunCommand(const std::string& title, const std::vector<std::string>& full_command, argument
823 int status = RunCommandToFd(fd, title, full_command, options);

Completed in 760 milliseconds