Lines Matching defs:in
6 ** (the "License"); you may not use this file except in compliance with
11 ** Unless required by applicable law or agreed to in writing, software
37 apr_bucket_brigade *in;
51 switch (s = apr_brigade_partition(req->in, bytes, &e)) {
55 apreq_brigade_move(req->tmpbb, req->in, e);
70 apreq_brigade_move(req->tmpbb, req->in, e);
260 apr_bucket_brigade *in)
266 req->handle.bucket_alloc = in->bucket_alloc;
270 req->in = apr_brigade_create(pool, in->bucket_alloc);
271 req->tmpbb = apr_brigade_create(pool, in->bucket_alloc);
274 APR_BRIGADE_CONCAT(req->in, in);
297 if (!APR_BUCKET_IS_EOS(APR_BRIGADE_LAST(req->in))) {
298 apr_bucket *eos = apr_bucket_eos_create(in->bucket_alloc);
299 APR_BRIGADE_INSERT_TAIL(req->in, eos);