HomeSort by relevance Sort by last modified time
    Searched refs:pause_writing (Results 1 - 7 of 7) sorted by null

  /external/python/cpython3/Lib/asyncio/
protocols.py 35 def pause_writing(self): member in class:BaseProtocol
38 Pause and resume calls are paired -- pause_writing() is called
45 pause_writing() is not called -- it must go strictly over.
54 without yielding until pause_writing() is called).
60 See pause_writing() for details.
transports.py 75 pause_writing() and resume_writing() methods. If specified,
83 well, and causes pause_writing() to be called whenever the
246 get_write_buffer_size(), and their protocol's pause_writing() and
264 self._protocol.pause_writing()
267 'message': 'protocol.pause_writing() failed',
base_subprocess.py 273 def pause_writing(self): member in class:WriteSubprocessPipeProto
274 self.proc._protocol.pause_writing()
sslproto.py 351 pause_writing() and resume_writing() methods. If specified,
359 well, and causes pause_writing() to be called whenever the
374 # Required for sendfile fallback pause_writing/resume_writing logic
504 def pause_writing(self): member in class:SSLProtocol
508 self._app_protocol.pause_writing()
streams.py 150 This implements the protocol methods pause_writing(),
166 def pause_writing(self): member in class:FlowControlMixin
base_events.py 217 def pause_writing(self): member in class:_SendfileFallbackProtocol
    [all...]
  /external/python/cpython3/Lib/test/test_asyncio/
test_proactor_events.py 397 self.assertFalse(self.protocol.pause_writing.called)
409 self.assertTrue(self.protocol.pause_writing.called)
426 self.assertFalse(self.protocol.pause_writing.called)
432 self.assertTrue(self.protocol.pause_writing.called)
443 self.assertFalse(self.protocol.pause_writing.called)
449 self.assertFalse(self.protocol.pause_writing.called)
455 self.assertTrue(self.protocol.pause_writing.called)
468 self.assertFalse(self.protocol.pause_writing.called)
    [all...]

Completed in 430 milliseconds