Home
last modified time | relevance | path

Searched refs:write_eof (Results 1 – 14 of 14) sorted by relevance

/external/python/cpython3/Lib/test/test_asyncio/
Dtest_proactor_events.py277 tr.write_eof()
279 tr.write_eof()
288 tr.write_eof()
301 tr.write_eof()
312 tr.write_eof()
327 tr.write_eof()
Dtest_transports.py41 self.assertRaises(NotImplementedError, transport.write_eof)
Dtest_unix_events.py777 tr.write_eof = mock.Mock()
779 tr.write_eof.assert_called_with()
786 tr.write_eof = mock.Mock()
789 self.assertFalse(tr.write_eof.called)
793 tr.write_eof()
802 tr.write_eof()
Dtest_selector_events.py1114 tr.write_eof()
1116 tr.write_eof()
1124 tr.write_eof()
1461 self.assertRaises(NotImplementedError, tr.write_eof)
/external/python/cpython3/Lib/asyncio/
Dproactor_events.py306 def write_eof(self): member in _ProactorBaseWritePipeTransport
343 def write_eof(self): member in _ProactorDuplexPipeTransport
371 def write_eof(self): member in _ProactorSocketTransport
Dtransports.py110 def write_eof(self): member in WriteTransport
Dstreams.py299 def write_eof(self): member in StreamWriter
300 return self._transport.write_eof()
Dunix_events.py594 def write_eof(self): member in _UnixWritePipeTransport
615 self.write_eof()
Dsslproto.py165 self._incoming.write_eof()
Dselector_events.py803 def write_eof(self): member in _SelectorSocketTransport
/external/python/cpython3/Doc/library/
Dasyncio-stream.rst182 :meth:`write_eof`, :meth:`get_extra_info` and :meth:`close`. It adds
195 Return :const:`True` if the transport supports :meth:`write_eof`,
238 .. method:: write_eof()
241 see :meth:`WriteTransport.write_eof`.
Dasyncio-protocol.rst145 Return :const:`True` if the transport supports :meth:`write_eof`,
197 .. method:: write_eof()
388 (for example by calling :meth:`write_eof`, if the other end also uses
Dssl.rst2169 .. method:: MemoryBIO.write_eof()
/external/python/cpython3/Lib/test/
Dtest_ssl.py1421 bio.write_eof()
1720 incoming.write_eof()