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

  /external/python/cpython3/Lib/asyncio/
proactor_events.py 606 self._csock.close()
607 self._csock = None
612 self._ssock, self._csock = socket.socketpair()
614 self._csock.setblocking(False)
638 self._csock.send(b'\0')
selector_events.py 96 self._csock.close()
97 self._csock = None
102 self._ssock, self._csock = socket.socketpair()
104 self._csock.setblocking(False)
126 # running. Guard for self._csock being None or closed. When
129 csock = self._csock
    [all...]
unix_events.py 92 signal.set_wakeup_fd(self._csock.fileno())
    [all...]
  /external/python/cpython3/Lib/test/test_asyncio/
test_selector_events.py 28 self._csock = mock.Mock()
123 self._csock = mock.Mock()
131 csock = self.loop._csock
142 self.assertIsNone(self.loop._csock)
179 self.loop._csock.send.side_effect = BlockingIOError
185 self.loop._csock.send.side_effect = RuntimeError()
    [all...]
test_proactor_events.py 746 self.assertIs(loop._csock, csock)
757 self.assertIsNone(self.loop._csock)
    [all...]
test_events.py     [all...]

Completed in 157 milliseconds