Home
last modified time | relevance | path

Searched refs:can_write_eof (Results 1 – 12 of 12) sorted by relevance

/external/python/cpython3/Lib/asyncio/
Dproactor_events.py303 def can_write_eof(self): member in _ProactorBaseWritePipeTransport
340 def can_write_eof(self): member in _ProactorDuplexPipeTransport
368 def can_write_eof(self): member in _ProactorSocketTransport
Dtransports.py119 def can_write_eof(self): member in WriteTransport
Dstreams.py302 def can_write_eof(self): member in StreamWriter
303 return self._transport.can_write_eof()
Dselector_events.py810 def can_write_eof(self): member in _SelectorSocketTransport
1042 def can_write_eof(self): member in _SelectorSslTransport
Dsslproto.py392 def can_write_eof(self): member in _SSLProtocolTransport
Dunix_events.py591 def can_write_eof(self): member in _UnixWritePipeTransport
/external/python/cpython3/Lib/test/test_asyncio/
Dtest_transports.py42 self.assertRaises(NotImplementedError, transport.can_write_eof)
Dtest_proactor_events.py276 self.assertTrue(tr.can_write_eof())
300 self.assertTrue(tr.can_write_eof())
325 self.assertFalse(tr.can_write_eof())
Dtest_selector_events.py1113 self.assertTrue(tr.can_write_eof())
1460 self.assertFalse(tr.can_write_eof())
Dtest_unix_events.py565 self.assertTrue(tr.can_write_eof())
/external/python/cpython3/Doc/library/
Dasyncio-stream.rst181 This exposes :meth:`write`, :meth:`writelines`, :meth:`can_write_eof()`,
193 .. method:: can_write_eof()
196 :const:`False` if not. See :meth:`WriteTransport.can_write_eof`.
Dasyncio-protocol.rst143 .. method:: can_write_eof()