Searched refs:comp_ctx (Results 1 – 13 of 13) sorted by relevance
/third_party/libwebsockets/lib/roles/http/compression/ |
D | stream.c | 84 lcs_available[n]->init_compression(&wsi->http.comp_ctx, decomp); in lws_http_compression_apply() 85 if (!wsi->http.comp_ctx.u.generic_ctx_ptr) { in lws_http_compression_apply() 91 wsi->http.comp_ctx.may_have_more = 0; in lws_http_compression_apply() 92 wsi->http.comp_ctx.final_on_input_side = 0; in lws_http_compression_apply() 93 wsi->http.comp_ctx.chunking = 0; in lws_http_compression_apply() 94 wsi->http.comp_ctx.is_decompression = !!decomp; in lws_http_compression_apply() 110 if (!wsi->http.lcs || !wsi->http.comp_ctx.u.generic_ctx_ptr) in lws_http_compression_destroy() 113 wsi->http.lcs->destroy(&wsi->http.comp_ctx); in lws_http_compression_destroy() 131 lws_comp_ctx_t *ctx = &wsi->http.comp_ctx; in lws_http_compression_transform()
|
/third_party/libwebsockets/lib/roles/h1/ |
D | ops-h1.c | 595 if (wsi->http.comp_ctx.buflist_comp || in rops_handle_POLLIN_h1() 596 wsi->http.comp_ctx.may_have_more) { in rops_handle_POLLIN_h1() 600 __func__, wsi->http.comp_ctx.buflist_comp, in rops_handle_POLLIN_h1() 601 wsi->http.comp_ctx.may_have_more in rops_handle_POLLIN_h1() 612 if (!wsi->http.comp_ctx.buflist_comp && in rops_handle_POLLIN_h1() 613 !wsi->http.comp_ctx.may_have_more && in rops_handle_POLLIN_h1() 805 (int)o, (int)*wp, wsi->http.comp_ctx.may_have_more); in rops_write_role_protocol_h1() 810 if (wsi->http.comp_ctx.chunking) { in rops_write_role_protocol_h1()
|
/third_party/libwebsockets/lib/plat/optee/ |
D | network.c | 69 || wsi->http.comp_ctx.buflist_comp || in lws_send_pipe_choked() 70 wsi->http.comp_ctx.may_have_more in lws_send_pipe_choked()
|
/third_party/libwebsockets/lib/core-net/ |
D | service.c | 106 if (wsi->http.comp_ctx.buflist_comp || in lws_handle_POLLOUT_event() 107 wsi->http.comp_ctx.may_have_more) { in lws_handle_POLLOUT_event() 111 wsi->http.comp_ctx.buflist_comp, in lws_handle_POLLOUT_event() 112 wsi->http.comp_ctx.may_have_more); in lws_handle_POLLOUT_event()
|
D | output.c | 51 && !wsi->http.comp_ctx.may_have_more in lws_issue_raw() 180 if (wsi->http.comp_ctx.may_have_more) in lws_issue_raw()
|
D | close.c | 499 || wsi->http.comp_ctx.buflist_comp || in __lws_close_free_wsi() 500 wsi->http.comp_ctx.may_have_more in __lws_close_free_wsi() 511 || wsi->http.comp_ctx.buflist_comp || in __lws_close_free_wsi() 512 wsi->http.comp_ctx.may_have_more in __lws_close_free_wsi()
|
/third_party/libwebsockets/lib/plat/freertos/ |
D | freertos-sockets.c | 52 || wsi->http.comp_ctx.buflist_comp || in lws_send_pipe_choked() 53 wsi->http.comp_ctx.may_have_more in lws_send_pipe_choked()
|
/third_party/libwebsockets/lib/roles/h2/ |
D | ops-h2.c | 454 wsi->http.comp_ctx.may_have_more); in rops_write_role_protocol_h2() 989 if (w->http.comp_ctx.buflist_comp || in rops_perform_user_POLLOUT_h2() 990 w->http.comp_ctx.may_have_more) { in rops_perform_user_POLLOUT_h2() 995 __func__, w->http.comp_ctx.buflist_comp, in rops_perform_user_POLLOUT_h2() 996 w->http.comp_ctx.may_have_more); in rops_perform_user_POLLOUT_h2()
|
/third_party/libwebsockets/lib/plat/windows/ |
D | windows-sockets.c | 54 ||wsi->http.comp_ctx.buflist_comp || in lws_send_pipe_choked() 55 wsi->http.comp_ctx.may_have_more in lws_send_pipe_choked()
|
/third_party/libwebsockets/lib/plat/unix/ |
D | unix-sockets.c | 74 ||wsi->http.comp_ctx.buflist_comp || in lws_send_pipe_choked() 75 wsi->http.comp_ctx.may_have_more in lws_send_pipe_choked()
|
/third_party/libwebsockets/lib/roles/http/server/ |
D | server.c | 2517 || wsi->http.comp_ctx.buflist_comp || in lws_http_transaction_completed() 2518 wsi->http.comp_ctx.may_have_more in lws_http_transaction_completed() 2943 wsi->http.comp_ctx.chunking = 1; in lws_serve_http_file() 3049 if (wsi->http.comp_ctx.buflist_comp || in lws_serve_http_file_fragment() 3050 wsi->http.comp_ctx.may_have_more) { in lws_serve_http_file_fragment() 3054 __func__, wsi->http.comp_ctx.buflist_comp, in lws_serve_http_file_fragment() 3055 wsi->http.comp_ctx.may_have_more); in lws_serve_http_file_fragment() 3255 && !wsi->http.comp_ctx.buflist_comp && in lws_serve_http_file_fragment() 3256 !wsi->http.comp_ctx.may_have_more in lws_serve_http_file_fragment()
|
/third_party/libwebsockets/lib/roles/http/ |
D | private-lib-roles-http.h | 259 lws_comp_ctx_t comp_ctx; member
|
D | header.c | 226 wsi->http.comp_ctx.chunking = 1; in lws_add_http_common_headers()
|