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 595 self._conn_lost = 0 # Set when call to connection_lost scheduled.
648 self._conn_lost += 1
673 if self._conn_lost:
681 self._conn_lost += 1
767 if self._conn_lost:
798 if self._conn_lost:
848 if self._conn_lost:
849 if self._conn_lost >= constants.LOG_THRESHOLD_FOR_CONNLOST_WRITES:
851 self._conn_lost += 1
877 if self._conn_lost
    [all...]
proactor_events.py 39 self._conn_lost = 0
84 self._conn_lost += 1
121 self._conn_lost += 1
319 if self._conn_lost:
320 if self._conn_lost >= constants.LOG_THRESHOLD_FOR_CONNLOST_WRITES:
322 self._conn_lost += 1
unix_events.py 558 self._conn_lost = 0
631 if self._conn_lost or self._closing:
632 if self._conn_lost >= constants.LOG_THRESHOLD_FOR_CONNLOST_WRITES:
635 self._conn_lost += 1
645 self._conn_lost += 1
666 self._conn_lost += 1
    [all...]
  /external/python/cpython3/Lib/test/test_asyncio/
test_selector_events.py 814 self.assertEqual(tr._conn_lost, 1)
817 self.assertEqual(tr._conn_lost, 1)
    [all...]
test_unix_events.py 878 self.assertEqual(1, tr._conn_lost)
881 self.assertEqual(2, tr._conn_lost)
    [all...]
test_proactor_events.py 170 tr._conn_lost = 1
213 self.assertEqual(tr._conn_lost, 1)
254 self.assertEqual(tr._conn_lost, 1)
    [all...]

Completed in 100 milliseconds