Home
last modified time | relevance | path

Searched refs:recvfrom_into (Results 1 - 6 of 6) sorted by relevance

/third_party/python/Lib/
H A Dssl.py1319 def recvfrom_into(self, buffer, nbytes=None, flags=0): member in SSLSocket
1322 raise ValueError("recvfrom_into not allowed on instances of %s" %
1325 return super().recvfrom_into(buffer, nbytes, flags)
/third_party/python/Lib/asyncio/
H A Dselector_events.py490 return sock.recvfrom_into(buf, nbytes)
509 result = sock.recvfrom_into(buf, bufsize)
H A Dwindows_events.py524 def recvfrom_into(self, conn, buf, flags=0): member in IocpProactor
H A Dproactor_events.py717 return await self._proactor.recvfrom_into(sock, buf, nbytes)
/third_party/python/Lib/test/
H A Dtest_socket.py965 "getsockname", "listen", "recvfrom", "recvfrom_into", "sendto",
4548 self.checkInterruptedRecv(self.serv.recvfrom_into, bytearray(1024))
5639 nbytes, addr = self.cli_conn.recvfrom_into(buf)
5651 nbytes, addr = self.cli_conn.recvfrom_into(buf)
5660 nbytes, addr = self.cli_conn.recvfrom_into(memoryview(buf))
5670 self.assertRaises(ValueError, self.cli_conn.recvfrom_into, buf, 1024)
5677 self.cli_conn.recvfrom_into(buf)
5678 self.cli_conn.recvfrom_into(buf, 0)
H A Dtest_ssl.py573 self.assertRaises(OSError, ss.recvfrom_into, bytearray(b'x'), 1)
3636 count, addr = s.recvfrom_into(b)
3650 ('recvfrom_into', _recvfrom_into, False, []),

Completed in 22 milliseconds