Home
last modified time | relevance | path

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

/third_party/libwebsockets/include/libwebsockets/
Dlws-eventlib-exports.h59 int (*sock_accept)(struct lws *wsi); member
/third_party/python/Lib/test/test_asyncio/
Dtest_sock_lowlevel.py92 self.loop.sock_accept(sock))
413 f = self.loop.sock_accept(listener)
428 f = asyncio.wait_for(self.loop.sock_accept(listener), 0.1)
Dtest_events.py2531 await loop.sock_accept(f)
/third_party/libwebsockets/lib/core-net/client/
Dconnect3.c380 if (wsi->a.context->event_loop_ops->sock_accept)
381 if (wsi->a.context->event_loop_ops->sock_accept(wsi)) {
/third_party/libwebsockets/lib/plat/unix/
Dunix-spawn.c420 if (context->event_loop_ops->sock_accept) in lws_spawn_piped()
421 if (context->event_loop_ops->sock_accept(lsp->stdwsi[n])) in lws_spawn_piped()
/third_party/libwebsockets/lib/core-net/
Dwsi.c350 if (pt->context->event_loop_ops->sock_accept) in lws_wsi_inject_to_loop()
351 if (pt->context->event_loop_ops->sock_accept(wsi)) in lws_wsi_inject_to_loop()
1117 if (wsi->a.context->event_loop_ops->sock_accept) in _lws_generic_transaction_completed_active_conn()
1118 wsi->a.context->event_loop_ops->sock_accept(wnew); in _lws_generic_transaction_completed_active_conn()
Dadopt.c394 if (new_wsi->a.context->event_loop_ops->sock_accept) in lws_adopt_descriptor_vhost2()
395 if (new_wsi->a.context->event_loop_ops->sock_accept(new_wsi)) in lws_adopt_descriptor_vhost2()
/third_party/libwebsockets/minimal-examples/http-server/minimal-http-server-eventlib-custom/
Dminimal-http-server.c255 .sock_accept = sock_accept_custom,
/third_party/libwebsockets/lib/event-libs/sdevent/
Dsdevent.c416 .sock_accept = sock_accept_sd,
/third_party/python/Lib/asyncio/
Devents.py543 async def sock_accept(self, sock): member in AbstractEventLoop
Dproactor_events.py706 async def sock_accept(self, sock): member in BaseProactorEventLoop
Dselector_events.py548 async def sock_accept(self, sock): member in BaseSelectorEventLoop
/third_party/python/Doc/library/
Dasyncio-llapi-index.rst198 * - ``await`` :meth:`loop.sock_accept`
Dasyncio-eventloop.rst924 .. coroutinemethod:: loop.sock_accept(sock)
/third_party/python/Modules/
Dsocketmodule.c2649 struct sock_accept { struct
2663 struct sock_accept *ctx = data; in sock_accept_impl() argument
2701 sock_accept(PySocketSockObject *s, PyObject *Py_UNUSED(ignored)) in sock_accept() function
2709 struct sock_accept ctx; in sock_accept()
4900 {"_accept", (PyCFunction)sock_accept, METH_NOARGS,
/third_party/python/Misc/NEWS.d/
D3.7.0a4.rst427 Affected functions: loop.sock_sendall, loop.sock_recv, loop.sock_accept,
D3.10.0a1.rst1531 Use add_done_callback() in asyncio.loop.sock_accept() to unsubscribe reader
/third_party/python/Doc/whatsnew/
D3.7.rst2394 :meth:`loop.sock_accept() <asyncio.loop.sock_accept>`,