Home
last modified time | relevance | path

Searched refs:sock_sendall (Results 1 – 12 of 12) sorted by relevance

/third_party/python/Lib/test/test_asyncio/
Dtest_sock_lowlevel.py83 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 …]
Dtest_sendfile.py232 self.run_loop(self.loop.sock_sendall(sock, buf))
234 self.run_loop(self.loop.sock_sendall(sock, buf))
Dtest_events.py2527 await loop.sock_sendall(f, 10)
/third_party/python/Lib/asyncio/
Devents.py537 async def sock_sendall(self, sock, data): member in AbstractEventLoop
Dproactor_events.py700 async def sock_sendall(self, sock, data): member in BaseProactorEventLoop
Dselector_events.py433 async def sock_sendall(self, sock, data): member in BaseSelectorEventLoop
Dbase_events.py902 await self.sock_sendall(sock, view[:read])
/third_party/python/Doc/library/
Dasyncio-llapi-index.rst192 * - ``await`` :meth:`loop.sock_sendall`
Dasyncio-eventloop.rst885 .. coroutinemethod:: loop.sock_sendall(sock, data)
/third_party/python/Misc/NEWS.d/
D3.7.0a4.rst427 Affected functions: loop.sock_sendall, loop.sock_recv, loop.sock_accept,
/third_party/python/Modules/
Dsocketmodule.c4171 sock_sendall(PySocketSockObject *s, PyObject *args) in sock_sendall() function
4942 {"sendall", (PyCFunction)sock_sendall, METH_VARARGS,
/third_party/python/Doc/whatsnew/
D3.7.rst2393 :meth:`loop.sock_sendall() <asyncio.loop.sock_sendall>`,