Searched refs:flush (Results 1 - 13 of 13) sorted by relevance
/httpd/modules/http/ |
H A D | chunk_filter.c | 59 apr_bucket *flush = NULL; local 86 flush = e; 151 else if (flush != NULL) { 152 APR_BUCKET_INSERT_BEFORE(flush, e);
|
/httpd/include/ |
H A D | http_connection.h | 49 * @param flush Whether or not to flush pending data before 52 AP_CORE_DECLARE(apr_status_t) ap_shutdown_conn(conn_rec *c, int flush); 56 * @param c The connection to flush
|
/httpd/server/ |
H A D | connection.c | 67 AP_CORE_DECLARE(apr_status_t) ap_shutdown_conn(conn_rec *c, int flush) 75 if (flush) {
|
H A D | protocol.c | 581 * 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);
|
/httpd/modules/proxy/ |
H A D | mod_proxy_fdpass.c | 152 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 D | mod_proxy_http.c | 255 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 D | mod_proxy.h | 253 unsigned int need_flush:1; /* Flag to decide whether we need to flush the 353 char flusher[PROXY_WORKER_MAX_SCHEME_SIZE]; /* flush provider used by mod_proxy_fdpass */ 1036 * @param flush flush 1042 int flush);
|
H A D | proxy_util.c | 3615 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 D | ssl_util_ssl.c | 128 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/debugging/ |
H A D | mod_dumpio.c | 171 apr_bucket *flush = apr_bucket_flush_create(f->c->bucket_alloc); local 172 APR_BUCKET_INSERT_BEFORE(b, flush);
|
H A D | mod_firehose.c | 326 apr_bucket *flush = apr_bucket_flush_create(f->c->bucket_alloc); local 327 APR_BUCKET_INSERT_BEFORE(b, flush);
|
/httpd/modules/filters/ |
H A D | mod_deflate.c | 444 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
|
H A D | mod_proxy_html.c | 153 #define AP_fwrite(ctx,inbuf,bytes,flush) \ 319 /* not sure if this should force-flush 910 /* pass on flush, except at start where it would cause
|
Completed in 4873 milliseconds