Lines Matching refs:transport
40 def connection_made(self, transport):
41 self._transport = transport
43 stdout_transport = transport.get_pipe_transport(1)
50 stderr_transport = transport.get_pipe_transport(2)
57 stdin_transport = transport.get_pipe_transport(0)
119 def __init__(self, transport, protocol, loop):
120 self._transport = transport
126 self.pid = transport.get_pid()
169 transport = self._transport.get_pipe_transport(fd)
182 transport.close()
208 transport, protocol = await loop.subprocess_shell(
212 return Process(transport, protocol, loop)
221 transport, protocol = await loop.subprocess_exec(
226 return Process(transport, protocol, loop)