Searched defs:full_command (Results 1 - 3 of 3) sorted by relevance

/frameworks/native/cmds/dumpstate/
H A DDumpstateUtil.cpp210 int RunCommandToFd(int fd, const std::string& title, const std::vector<std::string>& full_command, argument
212 if (full_command.empty()) {
217 int size = full_command.size() + 1; // null terminated
234 for (size_t i = 0; i < full_command.size(); i++) {
235 args[i + starting_index] = full_command[i].data();
237 if (i != full_command.size() - 1) {
H A Dutils.cpp74 static int RunCommand(const std::string& title, const std::vector<std::string>& full_command, argument
76 return ds.RunCommand(title, full_command, options);
678 int Dumpstate::RunCommand(const std::string& title, const std::vector<std::string>& full_command, argument
682 int status = RunCommandToFd(STDOUT_FILENO, title, full_command, options);
/frameworks/native/cmds/dumpstate/tests/
H A Ddumpstate_test.cpp150 int RunCommand(const std::string& title, const std::vector<std::string>& full_command, argument
154 int status = ds.RunCommand(title, full_command, options);
880 int RunCommand(const std::string& title, const std::vector<std::string>& full_command, argument
883 int status = RunCommandToFd(fd, title, full_command, options);

Completed in 26 milliseconds