Lines Matching refs:next
72 f = f->next;
87 ap_filter_t *next;
95 next = r->output_filters;
96 while (next && (next->frec != ap_http_header_filter_handle)) {
97 next = next->next;
101 * If next != NULL then we left the while above because of
102 * next->frec == ap_http_header_filter
104 if (next) {
450 r->next = new;
455 /* Must have prev and next pointers set before calling create_request
512 nextf = f->next;
629 ap_filter_t *next;
631 next = r->output_filters;
632 while (next && (next->frec != ap_subreq_core_filter_handle)
633 && (next != r->proto_output_filters)) {
634 next = next->next;
636 if (next && (next->frec == ap_subreq_core_filter_handle)) {
637 ap_remove_output_filter(next);