Home
last modified time | relevance | path

Searched refs:last_out (Results 1 – 12 of 12) sorted by relevance

/f-stack/app/nginx-1.16.1/src/http/modules/
H A Dngx_http_gunzip_filter_module.c27 ngx_chain_t **last_out; member
278 ctx->last_out = &ctx->out; in ngx_http_gunzip_body_filter()
325 ctx->last_out = &ctx->out; in ngx_http_gunzip_filter_inflate_start()
467 *ctx->last_out = cl; in ngx_http_gunzip_filter_inflate()
468 ctx->last_out = &cl->next; in ngx_http_gunzip_filter_inflate()
503 *ctx->last_out = cl; in ngx_http_gunzip_filter_inflate()
504 ctx->last_out = &cl->next; in ngx_http_gunzip_filter_inflate()
556 *ctx->last_out = cl; in ngx_http_gunzip_filter_inflate()
557 ctx->last_out = &cl->next; in ngx_http_gunzip_filter_inflate()
602 *ctx->last_out = cl; in ngx_http_gunzip_filter_inflate_end()
[all …]
H A Dngx_http_sub_filter_module.c65 ngx_chain_t **last_out; member
264 ctx->last_out = &ctx->out; in ngx_http_sub_header_filter()
388 *ctx->last_out = cl; in ngx_http_sub_body_filter()
389 ctx->last_out = &cl->next; in ngx_http_sub_body_filter()
417 *ctx->last_out = cl; in ngx_http_sub_body_filter()
468 *ctx->last_out = cl; in ngx_http_sub_body_filter()
469 ctx->last_out = &cl->next; in ngx_http_sub_body_filter()
493 *ctx->last_out = cl; in ngx_http_sub_body_filter()
494 ctx->last_out = &cl->next; in ngx_http_sub_body_filter()
514 *ctx->last_out = cl; in ngx_http_sub_body_filter()
[all …]
H A Dngx_http_gzip_filter_module.c38 ngx_chain_t **last_out; member
465 ctx->last_out = &ctx->out; in ngx_http_gzip_body_filter()
654 ctx->last_out = &ctx->out; in ngx_http_gzip_filter_deflate_start()
857 *ctx->last_out = cl; in ngx_http_gzip_filter_deflate()
858 ctx->last_out = &cl->next; in ngx_http_gzip_filter_deflate()
893 *ctx->last_out = cl; in ngx_http_gzip_filter_deflate()
894 ctx->last_out = &cl->next; in ngx_http_gzip_filter_deflate()
921 *ctx->last_out = cl; in ngx_http_gzip_filter_deflate()
960 *ctx->last_out = cl; in ngx_http_gzip_filter_deflate_end()
961 ctx->last_out = &cl->next; in ngx_http_gzip_filter_deflate_end()
[all …]
H A Dngx_http_ssi_filter_module.h54 ngx_chain_t **last_out; member
H A Dngx_http_ssi_filter_module.c353 ctx->last_out = &ctx->out; in ngx_http_ssi_header_filter()
518 *ctx->last_out = cl; in ngx_http_ssi_body_filter()
564 *ctx->last_out = cl; in ngx_http_ssi_body_filter()
565 ctx->last_out = &cl->next; in ngx_http_ssi_body_filter()
858 *ctx->last_out = cl; in ngx_http_ssi_body_filter()
859 ctx->last_out = &cl->next; in ngx_http_ssi_body_filter()
889 *ctx->last_out = cl; in ngx_http_ssi_body_filter()
890 ctx->last_out = &cl->next; in ngx_http_ssi_body_filter()
947 ctx->last_out = &ctx->out; in ngx_http_ssi_output()
2374 *ctx->last_out = cl; in ngx_http_ssi_echo()
[all …]
H A Dngx_http_autoindex_module.c20 ngx_chain_t **last_out;
1000 *ctx->last_out = cl;
1001 ctx->last_out = &cl->next;
/f-stack/app/nginx-1.16.1/src/http/v2/
H A Dngx_http_v2.h149 ngx_http_v2_out_frame_t *last_out; member
240 for (out = &h2c->last_out; *out; out = &(*out)->next) { in ngx_http_v2_queue_frame()
266 for (out = &h2c->last_out; *out; out = &(*out)->next) { in ngx_http_v2_queue_blocked_frame()
282 frame->next = h2c->last_out; in ngx_http_v2_queue_ordered_frame()
283 h2c->last_out = frame; in ngx_http_v2_queue_ordered_frame()
H A Dngx_http_v2.c429 if (h2c->last_out && ngx_http_v2_send_output_queue(h2c) == NGX_ERROR) { in ngx_http_v2_read_handler()
468 if (h2c->last_out == NULL && !c->buffered) { in ngx_http_v2_write_handler()
522 for (frame = h2c->last_out; frame; frame = fn) { in ngx_http_v2_send_output_queue()
588 h2c->last_out = frame; in ngx_http_v2_send_output_queue()
620 if (h2c->last_out || h2c->processing || h2c->pushing) { in ngx_http_v2_handle_connection()
4484 if (h2c->last_out && ngx_http_v2_send_output_queue(h2c) == NGX_ERROR) { in ngx_http_v2_handle_connection_handler()
4588 h2c->last_out = NULL; in ngx_http_v2_finalize_connection()
H A Dngx_http_v2_filter_module.c2102 fn = &h2c->last_out; in ngx_http_v2_filter_cleanup()
/f-stack/app/nginx-1.16.1/src/core/
H A Dngx_output_chain.c50 ngx_chain_t *cl, *out, **last_out; in ngx_output_chain() local
87 last_out = &out; in ngx_output_chain()
156 *last_out = cl; in ngx_output_chain()
157 last_out = &cl->next; in ngx_output_chain()
220 *last_out = cl; in ngx_output_chain()
221 last_out = &cl->next; in ngx_output_chain()
242 last_out = &out; in ngx_output_chain()
/f-stack/app/nginx-1.16.1/src/event/
H A Dngx_event_pipe.c739 ngx_chain_t *cl, *tl, *next, *out, **ll, **last_out, **last_free; in ngx_event_pipe_write_chain_to_temp_file() local
878 last_out = &cl->next; in ngx_event_pipe_write_chain_to_temp_file()
881 last_out = &p->out; in ngx_event_pipe_write_chain_to_temp_file()
903 *last_out = cl; in ngx_event_pipe_write_chain_to_temp_file()
/f-stack/app/nginx-1.16.1/src/http/modules/perl/
H A Dnginx.xs84 *ctx->ssi->last_out = cl; in ngx_http_perl_output()
85 ctx->ssi->last_out = &cl->next; in ngx_http_perl_output()