Lines Matching defs:out
89 apr_bucket_brigade *out;
113 cache->out = apr_brigade_create(r->pool, r->connection->bucket_alloc);
332 out = apr_brigade_create(r->pool, r->connection->bucket_alloc);
333 e = apr_bucket_eos_create(out->bucket_alloc);
334 APR_BRIGADE_INSERT_TAIL(out, e);
336 return ap_pass_brigade_fchk(r, out,
398 apr_bucket_brigade *out;
423 cache->out = apr_brigade_create(r->pool, r->connection->bucket_alloc);
628 out = apr_brigade_create(r->pool, r->connection->bucket_alloc);
629 e = apr_bucket_eos_create(out->bucket_alloc);
630 APR_BRIGADE_INSERT_TAIL(out, e);
631 return ap_pass_brigade_fchk(r, out, "cache(%s): ap_pass_brigade returned",
658 /* clean out any previous response up to EOS, if any */
697 * case, we write the brigade we were passed out downstream, and
699 * completely empty. As soon as the out brigade contains eos, call
709 * expected to move cached buckets to the out brigade, for us
715 rv = cache->provider->store_body(cache->handle, f->r, in, cache->out);
724 /* give up trying to cache, just step out the way */
725 APR_BRIGADE_PREPEND(in, cache->out);
730 /* does the out brigade contain eos? if so, we're done, commit! */
731 for (e = APR_BRIGADE_FIRST(cache->out);
732 e != APR_BRIGADE_SENTINEL(cache->out);
742 cache_remove_lock(conf, cache, f->r, cache->out);
744 if (APR_BRIGADE_EMPTY(cache->out)) {
752 /* oops, no data out, but not all data read in either, be
768 rv = ap_pass_brigade(f->next, cache->out);
893 /* morph the current save filter into the out filter, and serve from
925 /* pass brigade to our morphed out filter */
1627 * 2. Do nothing and bail out
1672 * 2. Do nothing and bail out
1873 /* morph the current save filter into the out filter, and serve from