/external/python/cpython3/Lib/test/test_asyncio/ |
D | test_protocols.py | 13 self.assertIsNone(p.connection_lost(f)) 22 self.assertIsNone(p.connection_lost(f)) 33 self.assertIsNone(p.connection_lost(f)) 44 self.assertIsNone(dp.connection_lost(f)) 53 self.assertIsNone(sp.connection_lost(f))
|
D | test_proactor_events.py | 204 self.protocol.connection_lost.assert_called_with(None) 216 self.protocol.connection_lost.assert_called_with(None) 220 self.protocol.connection_lost.reset_mock() 223 self.assertFalse(self.protocol.connection_lost.called) 230 self.assertFalse(self.protocol.connection_lost.called) 237 self.assertFalse(self.protocol.connection_lost.called) 257 self.protocol.connection_lost.assert_called_with(None) 279 self.assertFalse(self.protocol.connection_lost.called) 287 self.protocol.connection_lost.assert_called_with(None) 293 self.assertTrue(self.protocol.connection_lost.called) [all …]
|
D | test_unix_events.py | 461 def connection_lost(self, exc): member in SelectorEventLoopUnixSockSendfileTests.MyProto 700 self.protocol.connection_lost.assert_called_with(None) 767 self.protocol.connection_lost.assert_called_with(err) 776 self.protocol.connection_lost.assert_called_with(err) 789 self.protocol.connection_lost.assert_called_with(err) 950 self.protocol.connection_lost.assert_called_with(None) 1009 self.protocol.connection_lost.assert_called_with(err) 1022 self.protocol.connection_lost.assert_called_with(None) 1038 self.protocol.connection_lost.assert_called_with(None) 1047 self.protocol.connection_lost.assert_called_with(err) [all …]
|
D | test_buffered_proto.py | 23 def connection_lost(self, exc): member in ReceiveStuffProto
|
D | test_sslproto.py | 104 ssl_proto.connection_lost(ConnectionAbortedError) 127 ssl_proto.connection_lost(None) 539 def connection_lost(self, exc): member in BaseStartTLS.test_start_tls_server_1.ServerProto
|
D | test_selector_events.py | 413 self.protocol.connection_lost(None) 427 self.assertFalse(self.protocol.connection_lost.called) 480 self.protocol.connection_lost.assert_called_with(exc) 805 self.protocol.connection_lost.assert_called_with(None) 1295 self.protocol.connection_lost.assert_called_with(None)
|
D | test_subprocess.py | 66 self.assertTrue(protocol.connection_lost.called) 67 self.assertEqual(protocol.connection_lost.call_args[0], (None,))
|
D | test_sendfile.py | 49 def connection_lost(self, exc): member in MySendfileProto 80 def connection_lost(self, exc): member in MyProto
|
D | test_events.py | 104 def connection_lost(self, exc): member in MyBaseProto 138 def connection_lost(self, exc): member in MyDatagramProto 168 def connection_lost(self, exc): member in MyReadPipeProto 191 def connection_lost(self, exc): member in MyWritePipeProto 217 def connection_lost(self, exc): member in MySubprocessProtocol 663 def connection_lost(self, exc): member in EventLoopTestsMixin.test_connect_accepted_socket.MyProto 664 super().connection_lost(exc)
|
D | test_sock_lowlevel.py | 42 def connection_lost(self, exc): member in MyProto
|
D | test_base_events.py | 1019 def connection_lost(self, exc): member in MyProto 1047 def connection_lost(self, exc): member in MyDatagramProto 1974 def connection_lost(self, exc): member in BaseLoopSockSendfileTests.MyProto
|
D | test_streams.py | 119 writer._protocol.connection_lost(ZeroDivisionError())
|
/external/python/cpython3/Doc/library/ |
D | asyncio-protocol.rst | 157 protocol's :meth:`protocol.connection_lost() 158 <BaseProtocol.connection_lost>` method will be called with 274 The protocol's :meth:`protocol.connection_lost() 275 <BaseProtocol.connection_lost>` method will eventually be 369 :meth:`protocol.connection_lost() <BaseProtocol.connection_lost>` 498 .. method:: BaseProtocol.connection_lost(exc) 584 -> connection_lost -> end 644 -> connection_lost -> end 786 def connection_lost(self, exc): 895 def connection_lost(self, exc): [all …]
|
D | asyncio-llapi-index.rst | 418 * - ``callback`` :meth:`connection_lost() <BaseProtocol.connection_lost>`
|
/external/python/cpython3/Lib/asyncio/ |
D | protocols.py | 29 def connection_lost(self, exc): member in BaseProtocol
|
D | base_subprocess.py | 248 self._protocol.connection_lost(exc) 269 def connection_lost(self, exc): member in WriteSubprocessPipeProto
|
D | streams.py | 172 def connection_lost(self, exc): member in FlowControlMixin 266 def connection_lost(self, exc): member in StreamReaderProtocol 278 super().connection_lost(exc)
|
D | sslproto.py | 482 def connection_lost(self, exc): member in SSLProtocol 491 self._loop.call_soon(self._app_protocol.connection_lost, exc)
|
D | subprocess.py | 80 self.connection_lost(exc)
|
D | unix_events.py | 564 self._protocol.connection_lost(exc) 769 self._protocol.connection_lost(exc)
|
D | base_events.py | 232 def connection_lost(self, exc): member in _SendfileFallbackProtocol 241 self._proto.connection_lost(exc)
|
D | proactor_events.py | 155 self._protocol.connection_lost(exc)
|
D | selector_events.py | 736 self._protocol.connection_lost(exc)
|
/external/llvm-project/lldb/third_party/Python/module/pexpect-4.6/pexpect/ |
D | _async.py | 82 def connection_lost(self, exc): member in PatternWaiter
|
/external/python/cpython3/Misc/NEWS.d/ |
D | 3.8.0a1.rst | 2534 reader before `connection_lost` can run and feed the EOF to the reader.
|