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

  /external/python/cpython3/Lib/asyncio/
proactor_events.py 40 self._closing = False # Set when close() called.
54 elif self._closing:
78 return self._closing
81 if self._closing:
83 self._closing = True
118 if self._closing:
120 self._closing = True
170 return not self._paused and not self._closing
173 if self._closing or self._paused:
192 if self._closing or not self._paused
    [all...]
unix_events.py 433 self._closing = False
459 elif self._closing:
489 self._closing = True
507 return self._closing
510 if not self._closing:
534 self._closing = True
559 self._closing = False # Set when close() or write_eof() called.
592 elif self._closing:
631 if self._conn_lost or self._closing:
676 if self._closing
    [all...]
selector_events.py 596 self._closing = False # Set when close() called.
605 elif self._closing:
640 return self._closing
643 if self._closing:
645 self._closing = True
678 if not self._closing:
679 self._closing = True
702 if self._closing:
745 return not self._paused and not self._closing
748 if self._closing or self._paused
    [all...]
  /external/python/cpython3/Lib/test/test_asyncio/
test_proactor_events.py 98 tr._closing = True
106 tr._closing = False
115 tr._closing = False
271 tr._closing = True
653 tr._closing = True
661 tr._closing = False
670 tr._closing = False
    [all...]
test_unix_events.py 738 tr._closing = True
    [all...]
test_selector_events.py     [all...]

Completed in 1014 milliseconds