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

  /external/python/cpython3/Lib/
socket.py 520 csock = socket(family, type, proto)
522 csock.setblocking(False)
524 csock.connect((addr, port))
527 csock.setblocking(True)
530 csock.close()
534 return (ssock, csock)
  /external/python/cpython3/Lib/test/test_asyncio/
test_proactor_events.py 732 self.ssock, self.csock = mock.Mock(), mock.Mock()
735 return_value=(self.ssock, self.csock)):
742 ssock, csock = socketpair.return_value = (
746 self.assertIs(loop._csock, csock)
755 self.assertTrue(self.csock.close.called)
800 self.csock.send.assert_called_with(b'\0')
    [all...]
test_events.py 809 csock = socket.socket()
811 csock = client_ssl.wrap_socket(csock)
812 csock.connect(addr)
813 csock.sendall(message)
814 response = csock.recv(99)
815 csock.close()
    [all...]
test_selector_events.py 131 csock = self.loop._csock
132 csock.fileno.return_value = 1
146 csock.close.assert_called_with()
    [all...]
  /external/python/cpython3/Lib/asyncio/
selector_events.py 129 csock = self._csock
130 if csock is not None:
132 csock.send(b'\0')
    [all...]

Completed in 346 milliseconds