Home
last modified time | relevance | path

Searched refs:tunnel_proc (Results 1 – 2 of 2) sorted by relevance

/external/autotest/server/hosts/
Drpc_server_tracker.py86 tunnel_proc = self._host.create_ssh_tunnel(port, local_port)
87 self._rpc_proxy_map[port] = (command_name, tunnel_proc, remote_pid)
311 remote_name, tunnel_proc, remote_pid = self._rpc_proxy_map[port]
340 self._host.disconnect_ssh_tunnel(tunnel_proc)
Dabstract_ssh.py973 tunnel_proc = subprocess.Popen(args, stdout=devnull, stderr=devnull,
977 local_port, port, tunnel_proc.pid)
978 return tunnel_proc
981 def disconnect_ssh_tunnel(self, tunnel_proc): argument
988 if tunnel_proc.poll() is None:
989 tunnel_proc.terminate()
990 logging.debug('Terminated tunnel, pid %d', tunnel_proc.pid)
993 tunnel_proc.pid, tunnel_proc.returncode)