Home
last modified time | relevance | path

Searched refs:comp_ctx (Results 1 – 13 of 13) sorted by relevance

/third_party/libwebsockets/lib/roles/http/compression/
Dstream.c84 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/
Dops-h1.c595 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/
Dnetwork.c69 || 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/
Dservice.c106 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()
Doutput.c51 && !wsi->http.comp_ctx.may_have_more in lws_issue_raw()
180 if (wsi->http.comp_ctx.may_have_more) in lws_issue_raw()
Dclose.c499 || 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/
Dfreertos-sockets.c52 || 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/
Dops-h2.c454 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/
Dwindows-sockets.c54 ||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/
Dunix-sockets.c74 ||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/
Dserver.c2517 || 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/
Dprivate-lib-roles-http.h259 lws_comp_ctx_t comp_ctx; member
Dheader.c226 wsi->http.comp_ctx.chunking = 1; in lws_add_http_common_headers()