Searched refs:sock_sendall (Results 1 – 12 of 12) sorted by relevance
/third_party/python/Lib/test/test_asyncio/ |
D | test_sock_lowlevel.py | 83 self.loop.sock_sendall(sock, b'GET / HTTP/1.0\r\n\r\n')) 99 self.loop.sock_sendall(sock, b'GET / HTTP/1.0\r\n\r\n')) 114 self.loop.sock_sendall(sock, b'GET / HTTP/1.0\r\n\r\n')) 141 self.loop.sock_sendall(sock, b'GET / HTTP/1.0\r\n\r\n')) 160 self.loop.sock_sendall(sock, b'GET / HTTP/1.0\r\n\r\n')) 194 self.loop.sock_sendall(sock, b'hello')) 209 await self.loop.sock_sendall(sock, b'world') 284 await self.loop.sock_sendall(sock, 289 task = asyncio.create_task(self.loop.sock_sendall(sock, chunk)) 333 await self.loop.sock_sendall(sock, [all …]
|
D | test_sendfile.py | 232 self.run_loop(self.loop.sock_sendall(sock, buf)) 234 self.run_loop(self.loop.sock_sendall(sock, buf))
|
D | test_events.py | 2527 await loop.sock_sendall(f, 10)
|
/third_party/python/Lib/asyncio/ |
D | events.py | 537 async def sock_sendall(self, sock, data): member in AbstractEventLoop
|
D | proactor_events.py | 700 async def sock_sendall(self, sock, data): member in BaseProactorEventLoop
|
D | selector_events.py | 433 async def sock_sendall(self, sock, data): member in BaseSelectorEventLoop
|
D | base_events.py | 902 await self.sock_sendall(sock, view[:read])
|
/third_party/python/Doc/library/ |
D | asyncio-llapi-index.rst | 192 * - ``await`` :meth:`loop.sock_sendall`
|
D | asyncio-eventloop.rst | 885 .. coroutinemethod:: loop.sock_sendall(sock, data)
|
/third_party/python/Misc/NEWS.d/ |
D | 3.7.0a4.rst | 427 Affected functions: loop.sock_sendall, loop.sock_recv, loop.sock_accept,
|
/third_party/python/Modules/ |
D | socketmodule.c | 4171 sock_sendall(PySocketSockObject *s, PyObject *args) in sock_sendall() function 4942 {"sendall", (PyCFunction)sock_sendall, METH_VARARGS,
|
/third_party/python/Doc/whatsnew/ |
D | 3.7.rst | 2393 :meth:`loop.sock_sendall() <asyncio.loop.sock_sendall>`,
|