HomeSort by relevance Sort by last modified time
    Searched refs:full_command (Results 1 - 7 of 7) sorted by null

  /external/autotest/site_utils/chromeos_proxy/
bot_config.py 117 full_command = manifest.get('command')
118 if full_command and not full_command[0] in CMD_WHITELIST:
123 raise Exception('Command not allowed: %s' % full_command)
  /frameworks/native/cmds/dumpstate/
DumpstateUtil.cpp 194 int RunCommandToFd(int fd, const std::string& title, const std::vector<std::string>& full_command,
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) {
DumpstateUtil.h 159 * |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,
utils.cpp 72 static int RunCommand(const std::string& title, const std::vector<std::string>& full_command,
74 return ds.RunCommand(title, full_command, options);
705 int Dumpstate::RunCommand(const std::string& title, const std::vector<std::string>& full_command,
709 int status = RunCommandToFd(STDOUT_FILENO, title, full_command, options);
    [all...]
  /tools/test/connectivity/acts/framework/acts/controllers/utils_lib/ssh/
connection.py 187 full_command = 'echo "CONNECTED: %s"; %s' % (identifier, command)
190 full_command, env, self._settings, extra_options=extra_options)
  /external/toolchain-utils/
build_tc.py 157 full_command = 'sudo %s %s' % (env_string, command)
158 rv = self._ce.ChrootRunCommand(self._chromeos_root, full_command)
  /frameworks/native/cmds/dumpstate/tests/
dumpstate_test.cpp 148 int RunCommand(const std::string& title, const std::vector<std::string>& full_command,
152 int status = ds.RunCommand(title, full_command, options);
820 int RunCommand(const std::string& title, const std::vector<std::string>& full_command,
823 int status = RunCommandToFd(fd, title, full_command, options);
    [all...]

Completed in 175 milliseconds