Searched refs:event_loop_ops (Results 1 – 15 of 15) sorted by relevance
/external/libwebsockets/lib/plat/unix/ |
D | unix-fds.c | 240 if (context->event_loop_ops->io) in lws_plat_insert_socket_into_fds() 241 context->event_loop_ops->io(wsi, LWS_EV_START | LWS_EV_READ); in lws_plat_insert_socket_into_fds() 252 if (context->event_loop_ops->io) in lws_plat_delete_socket_from_fds() 253 context->event_loop_ops->io(wsi, in lws_plat_delete_socket_from_fds()
|
D | unix-service.c | 106 if (context->event_loop_ops->run_pt) in _lws_plat_service_tsi() 107 context->event_loop_ops->run_pt(context, tsi); in _lws_plat_service_tsi()
|
D | unix-spawn.c | 420 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()
|
/external/libwebsockets/lib/core-net/ |
D | service.c | 31 if (!cx->event_loop_ops->foreign_thread) in lws_service_assert_loop_thread() 35 if (!cx->event_loop_ops->foreign_thread(cx, tsi)) in lws_service_assert_loop_thread() 786 if (!strcmp(context->event_loop_ops->name, "libuv")) in lws_service_fd_tsi() 830 if (context->event_loop_ops->run_pt) { in lws_service() 832 context->event_loop_ops->run_pt(context, 0); in lws_service() 861 if (context->event_loop_ops->run_pt) { in lws_service_tsi() 863 context->event_loop_ops->run_pt(context, tsi); in lws_service_tsi()
|
D | pollfd.c | 169 if (context->event_loop_ops->io) { in _lws_change_pollfd() 171 context->event_loop_ops->io(wsi, in _lws_change_pollfd() 175 context->event_loop_ops->io(wsi, in _lws_change_pollfd() 179 context->event_loop_ops->io(wsi, in _lws_change_pollfd() 183 context->event_loop_ops->io(wsi, in _lws_change_pollfd() 397 if (context->event_loop_ops->io) in __remove_wsi_socket_from_fds() 398 context->event_loop_ops->io(wsi, LWS_EV_STOP | LWS_EV_READ | in __remove_wsi_socket_from_fds()
|
D | wsi.c | 301 s += context->event_loop_ops->evlib_size_wsi; in __lws_wsi_create_with_role() 350 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() 376 if (!wsi->a.context->event_loop_ops->destroy_wsi && in lws_wsi_extract_from_loop() 377 wsi->a.context->event_loop_ops->wsi_logical_close) { in lws_wsi_extract_from_loop() 378 wsi->a.context->event_loop_ops->wsi_logical_close(wsi); in lws_wsi_extract_from_loop() 382 if (wsi->a.context->event_loop_ops->destroy_wsi) in lws_wsi_extract_from_loop() 383 wsi->a.context->event_loop_ops->destroy_wsi(wsi); in lws_wsi_extract_from_loop() 1115 if (wsi->a.context->event_loop_ops->destroy_wsi) in _lws_generic_transaction_completed_active_conn() 1116 wsi->a.context->event_loop_ops->destroy_wsi(wsi); in _lws_generic_transaction_completed_active_conn() [all …]
|
D | close.c | 257 if (wsi->a.context->event_loop_ops->destroy_wsi) in __lws_free_wsi() 258 wsi->a.context->event_loop_ops->destroy_wsi(wsi); in __lws_free_wsi() 688 (context->event_loop_ops->flags & LELOF_ISPOLL)) { in __lws_close_free_wsi() 866 if (wsi->a.context->event_loop_ops->wsi_logical_close) in __lws_close_free_wsi() 867 if (wsi->a.context->event_loop_ops->wsi_logical_close(wsi)) in __lws_close_free_wsi()
|
D | adopt.c | 394 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()
|
D | vhost.c | 601 + context->event_loop_ops->evlib_size_vh in lws_create_vhost() 615 context->event_loop_ops->evlib_size_vh; in lws_create_vhost()
|
/external/libwebsockets/lib/core/ |
D | context.c | 613 context->event_loop_ops = plev->ops; in lws_create_context() 1224 if (context->event_loop_ops->init_context) in lws_create_context() 1225 if (context->event_loop_ops->init_context(context, info)) in lws_create_context() 1231 if (context->event_loop_ops->init_pt) in lws_create_context() 1238 if (context->event_loop_ops->init_pt(context, lp, n)) in lws_create_context() 1878 if (context->event_loop_ops->destroy_pt) { in lws_context_destroy() 1881 context->event_loop_ops->destroy_pt(context, n); in lws_context_destroy() 1919 if (context->event_loop_ops->destroy_context1) { in lws_context_destroy() 1921 context->event_loop_ops->destroy_context1(context); in lws_context_destroy() 1967 if (context->event_loop_ops->destroy_context2) in lws_context_destroy() [all …]
|
D | private-lib-core.h | 582 const struct lws_event_loop_ops *event_loop_ops; member
|
/external/libwebsockets/lib/plat/windows/ |
D | windows-service.c | 94 if (context->event_loop_ops->run_pt) in _lws_plat_service_tsi() 95 context->event_loop_ops->run_pt(context, tsi); in _lws_plat_service_tsi()
|
D | windows-sockets.c | 204 if (context->event_loop_ops->io) in lws_plat_insert_socket_into_fds() 205 context->event_loop_ops->io(wsi, LWS_EV_START | LWS_EV_READ); in lws_plat_insert_socket_into_fds()
|
/external/libwebsockets/lib/core-net/client/ |
D | connect3.c | 324 if (wsi->a.context->event_loop_ops->check_client_connect_ok && 325 wsi->a.context->event_loop_ops->check_client_connect_ok(wsi) 376 if (wsi->a.context->event_loop_ops->sock_accept) 377 if (wsi->a.context->event_loop_ops->sock_accept(wsi)) {
|
/external/libwebsockets/lib/roles/http/server/ |
D | server.c | 327 if (wsi->a.context->event_loop_ops->init_vhost_listen_wsi) in _lws_vhost_init_server_af() 328 wsi->a.context->event_loop_ops->init_vhost_listen_wsi(wsi); in _lws_vhost_init_server_af()
|