Lines Matching defs:last_out
1011 apr_bucket *last_in, *last_out;
1013 last_out = APR_BRIGADE_LAST(out);
1015 if (APR_BUCKET_IS_EOS(last_out))
1036 if (!BUCKET_IS_SPOOL(last_out)) {
1047 last_out = apr_bucket_file_create(file, wlen, 0,
1049 last_out->type = &spool_bucket_type;
1050 APR_BRIGADE_INSERT_TAIL(out, last_out);
1051 f = last_out->data;
1054 f = last_out->data;
1058 wlen = last_out->start + last_out->length;
1081 while ((apr_uint64_t)wlen > FILE_BUCKET_LIMIT - last_out->length) {
1084 apr_bucket_copy(last_out, &e);
1086 e->start = last_out->start + FILE_BUCKET_LIMIT;
1087 wlen -= FILE_BUCKET_LIMIT - last_out->length;
1088 last_out->length = FILE_BUCKET_LIMIT;
1093 last_out->type = &apr_bucket_type_file;
1097 last_out = e;
1100 last_out->length += wlen;