Lines Matching refs: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
39 /* maximum recursion level in the mfd parser */
44 apr_bucket_brigade *in;
113 apr_bucket_brigade *in,
117 apr_bucket *e = APR_BRIGADE_FIRST(in);
120 while ( e != APR_BRIGADE_SENTINEL(in) ) {
149 apr_bucket *f = APR_BRIGADE_FIRST(in);
151 } while (APR_BRIGADE_FIRST(in) != e);
170 apr_bucket_brigade * volatile in_v = in;
205 e = APR_BRIGADE_FIRST(in);
252 ctx->in = apr_brigade_create(pool, ba);
282 APR_BRIGADE_CONCAT(ctx->in, bb);
290 s = split_on_bdry(ctx->bb, ctx->in, NULL, ctx->bdry + 2);
292 apreq_brigade_setaside(ctx->in, pool);
305 s = split_on_bdry(ctx->bb, ctx->in, NULL, CRLF);
311 apreq_brigade_setaside(ctx->in, pool);
321 APR_BRIGADE_CONCAT(bb, ctx->in);
340 s = apreq_parser_run(ctx->hdr_parser, ctx->info, ctx->in);
346 apreq_brigade_setaside(ctx->in, pool);
362 * So the CRLF we already matched in MFD_HEADER may have been
375 switch (brigade_start_string(ctx->in, ctx->bdry + 2)) {
378 apreq_brigade_setaside(ctx->in, pool);
385 APR_BRIGADE_INSERT_HEAD(ctx->in, e);
474 /* else check for a file part in a multipart section */
497 /* otherwise look for Content-ID in multipart/mixed case */
533 s = split_on_bdry(ctx->bb, ctx->in, ctx->pattern, ctx->bdry);
538 apreq_brigade_setaside(ctx->in, pool);
588 s = split_on_bdry(ctx->bb, ctx->in, ctx->pattern, ctx->bdry);
600 apreq_brigade_setaside(ctx->in, pool);
639 s = apreq_parser_run(ctx->next_parser, t, ctx->in);
646 APR_BRIGADE_CONCAT(bb, ctx->in);