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

  /external/python/cpython3/Lib/asyncio/
selector_events.py 568 self._conn_lost = 0 # Set when call to connection_lost scheduled.
620 self._conn_lost += 1
649 if self._conn_lost:
657 self._conn_lost += 1
721 if self._conn_lost:
753 if self._conn_lost:
754 if self._conn_lost >= constants.LOG_THRESHOLD_FOR_CONNLOST_WRITES:
756 self._conn_lost += 1
782 if self._conn_lost:
    [all...]
proactor_events.py 36 self._conn_lost = 0
82 self._conn_lost += 1
116 self._conn_lost += 1
243 if self._conn_lost:
244 if self._conn_lost >= constants.LOG_THRESHOLD_FOR_CONNLOST_WRITES:
246 self._conn_lost += 1
unix_events.py 465 self._conn_lost = 0
539 if self._conn_lost or self._closing:
540 if self._conn_lost >= constants.LOG_THRESHOLD_FOR_CONNLOST_WRITES:
543 self._conn_lost += 1
553 self._conn_lost += 1
574 self._conn_lost += 1
    [all...]
  /external/python/cpython3/Lib/test/test_asyncio/
test_selector_events.py 734 self.assertEqual(tr._conn_lost, 1)
737 self.assertEqual(tr._conn_lost, 1)
    [all...]
test_proactor_events.py 166 tr._conn_lost = 1
209 self.assertEqual(tr._conn_lost, 1)
250 self.assertEqual(tr._conn_lost, 1)
test_unix_events.py 625 self.assertEqual(1, tr._conn_lost)
628 self.assertEqual(2, tr._conn_lost)
644 self.assertEqual(tr._conn_lost, 1)
646 self.assertEqual(tr._conn_lost, 2)
716 self.assertEqual(1, tr._conn_lost)
    [all...]

Completed in 132 milliseconds