Home
last modified time | relevance | path

Searched refs:ssh_cmd (Results 1 – 11 of 11) sorted by relevance

/external/toolchain-utils/deprecated/dejagnu/boards/
Dgdbserver.sh.in7 ssh_cmd="nohup ${gdbserver_cmd} "
9 echo "Executing: ssh ${RSA_FILE} ${REMOTE_SSH_FLAGS} root@${FLAGS_remote} \"${ssh_cmd}\"" >&2
11 ssh ${REMOTE_SSH_FLAGS} root@${FLAGS_remote} "killall -9 gdbserver; ${ssh_cmd}"
/external/skia/infra/bots/recipe_modules/flavor/resources/
Dwin_ssh_cmd.py20 ssh_cmd = ['ssh', '-oConnectTimeout=15', '-oBatchMode=yes', user_host,
26 cmd, ' '.join([repr(s) for s in ssh_cmd]))
27 proc = subprocess.Popen(ssh_cmd, stdout=subprocess.PIPE)
/external/skia/infra/bots/recipe_modules/flavor/
Dssh.py37 ssh_cmd = ['ssh', '-oConnectTimeout=15', '-oBatchMode=yes',
40 return self._run(title, ssh_cmd, **kwargs)
/external/skqp/infra/bots/recipe_modules/flavor/
Dchromecast.py143 ssh_cmd = ['ssh', '-oConnectTimeout=15', '-oBatchMode=yes',
146 return self.m.run(self.m.step, title, cmd=ssh_cmd, **kwargs)
Dchromebook.py53 ssh_cmd = ['ssh', '-oConnectTimeout=15', '-oBatchMode=yes',
56 return self._run(title, ssh_cmd, **kwargs)
/external/autotest/server/hosts/
Dsonic_host.py253 ssh_cmd = '%s %s' % (self.make_ssh_command(), self.hostname)
254 site_utils.remote_wget(update_url, self.OTA_LOCATION, ssh_cmd)
Dabstract_ssh.py238 ssh_cmd = self.make_ssh_command(user=self.user, port=self.port,
256 symlink_flag, delete_flag, ssh_cmd, exclude_args)
946 ssh_cmd = self.make_ssh_command(opts=tunnel_options, port=self.port)
947 tunnel_cmd = '%s %s' % (ssh_cmd, self.hostname)
Dssh_host.py125 ssh_cmd = self.ssh_command(connect_timeout, options)
132 full_cmd = '%s "%s %s"' % (ssh_cmd, env, utils.sh_escape(command))
/external/libcxx/utils/libcxx/test/
Dexecutor.py189 ssh_cmd = [self.ssh_command, '-oBatchMode=yes', remote]
197 out, err, rc = self.local_run(ssh_cmd + [remote_cmd])
/external/grpc-grpc/tools/run_tests/
Drun_performance_tests.py91 ssh_cmd = ['ssh']
93 ssh_cmd.extend([
98 cmdline = ssh_cmd
/external/autotest/server/
Dsite_utils.py241 def remote_wget(source_url, dest_path, ssh_cmd): argument
250 (source_url, ssh_cmd, dest_path))