Home
last modified time | relevance | path

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

/external/skia/infra/bots/flavor/
Dssh_flavor.py42 ssh_cmd = ['ssh']
44 ssh_cmd.extend(['-p', self.port])
48 ssh_cmd.append(dest)
49 ssh_cmd.extend(cmd)
50 return self._bot_info.run(ssh_cmd, **kwargs)
/external/libvncserver/webclients/java-applet/ssl/
Dss_vncviewer202 ssh_cmd=""
205 ssh_cmd="$SS_VNCVIEWER_SSH_CMD"
272 "-sshcmd") shift; ssh_cmd="$1"
393 if [ "X$ssh_cmd" = "X" ]; then
395 ssh_cmd="sleep $ssh_sleep"
884 ssh_cmd=`echo "$ssh_cmd" | sed -e 's/ -localhost/ /g'`
2737 sz=`echo "$ssh_cmd" | wc -c`
2741 info="$ssh_cmd"
2751 if echo "$ssh_cmd" | egrep "(PORT=|P=) " > /dev/null; then
2753 if echo "$ssh_cmd" | egrep "P= " > /dev/null; then
[all …]
/external/autotest/site_utils/
Dbrillo_test_launcher.py79 ssh_cmd = 'ssh -o StrictHostKeyChecking=no -o UserKnownHostsFile=/dev/null'
81 ssh_cmd += ' -p %s' % moblab.port
82 rsync_cmd += ['-e', ssh_cmd]
/external/autotest/server/hosts/
Dsonic_host.py252 ssh_cmd = '%s %s' % (self.make_ssh_command(), self.hostname)
253 site_utils.remote_wget(update_url, self.OTA_LOCATION, ssh_cmd)
Dssh_host.py75 ssh_cmd = self.ssh_command(connect_timeout, options)
82 full_cmd = '%s "%s %s"' % (ssh_cmd, env, utils.sh_escape(command))
Dabstract_ssh.py146 ssh_cmd = self.make_ssh_command(user=self.user, port=self.port,
159 return command % (symlink_flag, delete_flag, ssh_cmd,
813 ssh_cmd = self.make_ssh_command(opts=tunnel_options)
814 tunnel_cmd = '%s %s' % (ssh_cmd, self.hostname)
/external/libcxx/test/libcxx/test/
Dexecutor.py183 ssh_cmd = [self.ssh_command, '-oBatchMode=yes', remote]
191 return self.local_run(ssh_cmd + [remote_cmd])
/external/autotest/server/
Dsite_utils.py192 def remote_wget(source_url, dest_path, ssh_cmd): argument
201 (source_url, ssh_cmd, dest_path))