Searched defs:flush (Results 1 - 9 of 9) sorted by relevance

/httpd/modules/http/
H A Dchunk_filter.c59 apr_bucket *flush = NULL; local
86 flush = e;
151 else if (flush != NULL) {
152 APR_BUCKET_INSERT_BEFORE(flush, e);
/httpd/modules/debugging/
H A Dmod_dumpio.c171 apr_bucket *flush = apr_bucket_flush_create(f->c->bucket_alloc); local
172 APR_BUCKET_INSERT_BEFORE(b, flush);
H A Dmod_firehose.c326 apr_bucket *flush = apr_bucket_flush_create(f->c->bucket_alloc); local
327 APR_BUCKET_INSERT_BEFORE(b, flush);
/httpd/modules/proxy/
H A Dmod_proxy_fdpass.c152 const char *flush_method = worker->s->flusher ? worker->s->flusher : "flush";
154 proxy_fdpass_flush *flush = ap_lookup_provider(PROXY_FDPASS_FLUSHER, local
157 if (!flush) {
159 "Unable to find configured flush provider '%s'",
164 status = flush->flusher(r);
225 "flush",
232 ap_register_provider(p, PROXY_FDPASS_FLUSHER, "flush", "0", &builtin_flush);
H A Dmod_proxy_http.c255 int flush = flushall; local
263 flush = 0;
298 flush = !seen_eos;
320 rv = ap_proxy_pass_brigade(bucket_alloc, r, p_conn, origin, bb, flush);
371 /* Now we have headers-only, or the chunk EOS mark; flush it */
411 int flush = flushall; local
421 /* Once we hit EOS, we are ready to flush. */
422 flush = 1;
463 flush = 1;
485 rv = ap_proxy_pass_brigade(bucket_alloc, r, p_conn, origin, bb, flush);
[all...]
H A Dproxy_util.c3615 int flush)
3620 if (flush) {
3612 ap_proxy_pass_brigade(apr_bucket_alloc_t *bucket_alloc, request_rec *r, proxy_conn_rec *p_conn, conn_rec *origin, apr_bucket_brigade *bb, int flush) argument
/httpd/modules/ssl/
H A Dssl_util_ssl.c128 int flush; local
138 flush = !(SSL_get_shutdown(ssl) & SSL_SENT_SHUTDOWN);
141 if (rc >= 0 && flush && (SSL_get_shutdown(ssl) & SSL_SENT_SHUTDOWN)) {
149 flush = 0;
/httpd/modules/filters/
H A Dmod_deflate.c444 int (*libz_func)(z_streamp, int), int flush,
460 zRC = libz_func(&ctx->stream, flush);
882 /* flush the remaining data from the zlib buffers */
940 /* flush the remaining data from the zlib buffers */
950 /* Remove flush bucket from old brigade anf insert into the new. */
1485 * some data in our zlib buffer, flush it out so we can return something.
1671 /* flush the remaining data from the zlib buffers */
1686 /* Remove flush bucket from old brigade anf insert into the new. */
443 flush_libz_buffer(deflate_ctx *ctx, deflate_filter_config *c, int (*libz_func)(z_streamp, int), int flush, int crc) argument
/httpd/server/
H A Dprotocol.c581 * We delay the flush as long as possible so that we can improve
585 * for the final buffer flush from us, and we will block in the implicit
1499 apr_bucket *flush; local
1501 flush = apr_bucket_flush_create(r->connection->bucket_alloc);
1503 APR_BRIGADE_INSERT_TAIL(b, flush);

Completed in 40 milliseconds