Home | History | Annotate | Download | only in asyncio

Lines Matching refs:protocol

309     def _make_socket_transport(self, sock, protocol, waiter=None, *,
314 def _make_ssl_transport(self, rawsock, protocol, sslcontext, waiter=None,
320 def _make_datagram_transport(self, sock, protocol,
325 def _make_read_pipe_transport(self, pipe, protocol, waiter=None,
330 def _make_write_pipe_transport(self, pipe, protocol, waiter=None,
336 def _make_subprocess_transport(self, protocol, args, shell,
688 a callable returning a protocol instance.
692 (transport, protocol) pair.
801 transport, protocol = yield from self._create_connection_transport(
808 sock, host, port, transport, protocol)
809 return transport, protocol
817 protocol = protocol_factory()
822 sock, protocol, sslcontext, waiter,
825 transport = self._make_socket_transport(sock, protocol, waiter)
833 return transport, protocol
867 # join address by (family, protocol)
935 protocol = protocol_factory()
938 sock, protocol, r_addr, waiter)
943 local_addr, remote_addr, transport, protocol)
947 remote_addr, transport, protocol)
955 return transport, protocol
1023 # Assume it's a bad family/type/protocol combination.
1078 returns a (transport, protocol) pair.
1084 transport, protocol = yield from self._create_connection_transport(
1090 logger.debug("%r handled: (%r, %r)", sock, transport, protocol)
1091 return transport, protocol
1095 protocol = protocol_factory()
1097 transport = self._make_read_pipe_transport(pipe, protocol, waiter)
1107 pipe.fileno(), transport, protocol)
1108 return transport, protocol
1112 protocol = protocol_factory()
1114 transport = self._make_write_pipe_transport(pipe, protocol, waiter)
1124 pipe.fileno(), transport, protocol)
1125 return transport, protocol
1153 protocol = protocol_factory()
1160 protocol, cmd, True, stdin, stdout, stderr, bufsize, **kwargs)
1163 return transport, protocol
1182 protocol = protocol_factory()
1189 protocol, popen_args, False, stdin, stdout, stderr,
1193 return transport, protocol
1270 - 'protocol' (optional): Protocol instance;