Home
last modified time | relevance | path

Searched refs:sock_accept (Results 1 – 17 of 17) sorted by relevance

/external/libwebsockets/lib/event-libs/
Dprivate-lib-event-libs.h52 int (*sock_accept)(struct lws *wsi); member
/external/python/cpython3/Lib/test/test_asyncio/
Dtest_sock_lowlevel.py88 self.loop.sock_accept(sock))
409 f = self.loop.sock_accept(listener)
424 f = asyncio.wait_for(self.loop.sock_accept(listener), 0.1)
Dtest_events.py2508 await loop.sock_accept(f)
/external/libwebsockets/lib/misc/
Dspawn.c341 if (context->event_loop_ops->sock_accept) in lws_spawn_piped()
342 if (context->event_loop_ops->sock_accept(lsp->stdwsi[n])) in lws_spawn_piped()
/external/python/cpython3/Misc/NEWS.d/
D3.9.0rc1.rst73 Use add_done_callback() in asyncio.loop.sock_accept() to unsubscribe reader
D3.7.0a4.rst427 Affected functions: loop.sock_sendall, loop.sock_recv, loop.sock_accept,
/external/libwebsockets/lib/core-net/
Dadopt.c239 if (new_wsi->context->event_loop_ops->sock_accept) in lws_adopt_descriptor_vhost2()
240 if (new_wsi->context->event_loop_ops->sock_accept(new_wsi)) in lws_adopt_descriptor_vhost2()
Dvhost.c946 if (context->event_loop_ops->sock_accept)
947 if (context->event_loop_ops->sock_accept(wsi))
/external/python/cpython3/Lib/asyncio/
Devents.py529 async def sock_accept(self, sock): member in AbstractEventLoop
Dproactor_events.py704 async def sock_accept(self, sock): member in BaseProactorEventLoop
Dselector_events.py548 async def sock_accept(self, sock): member in BaseSelectorEventLoop
/external/libwebsockets/lib/roles/http/client/
Dclient-handshake.c610 if (wsi->context->event_loop_ops->sock_accept)
611 if (wsi->context->event_loop_ops->sock_accept(wsi))
/external/python/cpython3/Doc/library/
Dasyncio-llapi-index.rst198 * - ``await`` :meth:`loop.sock_accept`
Dasyncio-eventloop.rst910 .. coroutinemethod:: loop.sock_accept(sock)
/external/python/cpython3/Modules/
Dsocketmodule.c2694 struct sock_accept { struct
2708 struct sock_accept *ctx = data; in sock_accept_impl() argument
2746 sock_accept(PySocketSockObject *s, PyObject *Py_UNUSED(ignored)) in sock_accept() function
2754 struct sock_accept ctx; in sock_accept()
4944 {"_accept", (PyCFunction)sock_accept, METH_NOARGS,
/external/python/cpython2/Modules/
Dsocketmodule.c1723 sock_accept(PySocketSockObject *s) in sock_accept() function
3062 {"accept", (PyCFunction)sock_accept, METH_NOARGS,
/external/python/cpython3/Doc/whatsnew/
D3.7.rst2393 :meth:`loop.sock_accept() <asyncio.loop.sock_accept>`,