• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /macosx-10.10.1/apache-793/httpd/modules/cache/

Lines Matching +defs:cl +defs:next

75     ap_filter_t *next;
304 next = r->output_filters;
305 while (next && (next->frec != cache_out_handle)) {
306 ap_remove_output_filter(next);
307 next = next->next;
329 static int cache_replace_filter(ap_filter_t *next, ap_filter_rec_t *from,
332 while (next && next->frec != stop) {
333 if (next->frec == from) {
334 ffrom = next;
336 if (next->frec == to) {
337 fto = next;
339 next = next->next;
356 static ap_filter_t *cache_get_filter(ap_filter_t *next, ap_filter_rec_t *rec) {
357 while (next) {
358 if (next->frec == rec && next->ctx) {
361 next = next->next;
363 return next;
379 ap_filter_t *next;
600 next = r->output_filters;
601 while (next && (next->frec != cache_out_handle)) {
602 ap_remove_output_filter(next);
603 next = next->next;
632 return ap_pass_brigade(f->next, in);
666 return ap_pass_brigade(f->next, in);
708 return ap_pass_brigade(f->next, in);
746 return ap_pass_brigade(f->next, in);
750 rv = ap_pass_brigade(f->next, cache->out);
785 * Finally, pass the data to the next filter (the network or whatever)
800 const char *cc_out, *cl, *pragma;
821 return ap_pass_brigade(f->next, in);
1222 return ap_pass_brigade(f->next, in);
1230 cl = apr_table_get(r->err_headers_out, "Content-Length");
1231 if (cl == NULL) {
1232 cl = apr_table_get(r->headers_out, "Content-Length");
1234 if (cl) {
1236 if (apr_strtoff(&size, cl, &errp, 10) || *errp || size < 0) {
1237 cl = NULL; /* parse error, see next 'if' block */
1241 if (!cl) {
1323 return ap_pass_brigade(f->next, in);
1544 return ap_pass_brigade(f->next, bb);
1557 return ap_pass_brigade(f->next, in);
1606 return ap_pass_brigade(f->next, in);
1614 return ap_pass_brigade(f->next, in);
1678 return ap_pass_brigade(f->next, in);
1722 return ap_pass_brigade(f->next, in);