Home
last modified time | relevance | path

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

/external/python/cpython3/Lib/asyncio/
Devents.py524 async def sock_sendall(self, sock, data): member in AbstractEventLoop
Dproactor_events.py550 async def sock_sendall(self, sock, data): member in BaseProactorEventLoop
Dselector_events.py409 async def sock_sendall(self, sock, data): member in BaseSelectorEventLoop
Dbase_events.py835 await self.sock_sendall(sock, view)
/external/python/cpython3/Lib/test/test_asyncio/
Dtest_events.py429 self.loop.sock_sendall(sock, b'GET / HTTP/1.0\r\n\r\n'))
445 self.loop.sock_sendall(sock, b'GET / HTTP/1.0\r\n\r\n'))
460 self.loop.sock_sendall(sock, b'GET / HTTP/1.0\r\n\r\n'))
2265 self.run_loop(self.loop.sock_sendall(sock, buf))
2267 self.run_loop(self.loop.sock_sendall(sock, buf))
3043 await loop.sock_sendall(f, 10)
Dtest_selector_events.py274 self.loop.sock_sendall(sock, b'data'))
290 f = self.loop.create_task(self.loop.sock_sendall(sock, b''))
305 fut = self.loop.create_task(self.loop.sock_sendall(sock, b'data'))
/external/python/cpython3/Doc/library/
Dasyncio-llapi-index.rst192 * - ``await`` :meth:`loop.sock_sendall`
Dasyncio-eventloop.rst798 .. coroutinemethod:: loop.sock_sendall(sock, data)
/external/python/cpython3/Misc/NEWS.d/
D3.7.0a4.rst428 Affected functions: loop.sock_sendall, loop.sock_recv, loop.sock_accept,
/external/python/cpython2/Modules/
Dsocketmodule.c2847 sock_sendall(PySocketSockObject *s, PyObject *args) function
3106 {"sendall", (PyCFunction)sock_sendall, METH_VARARGS,
/external/python/cpython3/Modules/
Dsocketmodule.c3975 sock_sendall(PySocketSockObject *s, PyObject *args) in sock_sendall() function
4732 {"sendall", (PyCFunction)sock_sendall, METH_VARARGS,
/external/python/cpython3/Doc/whatsnew/
D3.7.rst2385 :meth:`loop.sock_sendall() <asyncio.loop.sock_sendall>`,