Searched refs:sock_sendall (Results 1 - 8 of 8) sorted by relevance
/third_party/python/Lib/test/test_asyncio/ |
H A D | test_sock_lowlevel.py | 86 self.loop.sock_sendall(sock, b'GET / HTTP/1.0\r\n\r\n')) 102 self.loop.sock_sendall(sock, b'GET / HTTP/1.0\r\n\r\n')) 117 self.loop.sock_sendall(sock, b'GET / HTTP/1.0\r\n\r\n')) 144 self.loop.sock_sendall(sock, b'GET / HTTP/1.0\r\n\r\n')) 163 self.loop.sock_sendall(sock, b'GET / HTTP/1.0\r\n\r\n')) 195 # cancel a blocked sock_sendall 197 self.loop.sock_sendall(sock, b'hello')) 211 # immediately make another sock_sendall call 212 await self.loop.sock_sendall(sock, b'world') 287 await self.loop.sock_sendall(soc [all...] |
H A D | test_sendfile.py | 237 self.run_loop(self.loop.sock_sendall(sock, buf)) 239 self.run_loop(self.loop.sock_sendall(sock, buf))
|
H A D | test_events.py | 2554 await loop.sock_sendall(f, 10)
|
/third_party/python/Lib/asyncio/ |
H A D | events.py | 555 async def sock_sendall(self, sock, data): member in AbstractEventLoop
|
H A D | proactor_events.py | 719 async def sock_sendall(self, sock, data): member in BaseProactorEventLoop
|
H A D | selector_events.py | 519 async def sock_sendall(self, sock, data): member in BaseSelectorEventLoop
|
H A D | base_events.py | 915 await self.sock_sendall(sock, view[:read])
|
/third_party/python/Modules/ |
H A D | socketmodule.c | 4224 sock_sendall(PySocketSockObject *s, PyObject *args) in sock_sendall() function 5011 {"sendall", (PyCFunction)sock_sendall, METH_VARARGS,
|
Completed in 19 milliseconds