Lines Matching defs:next
57 apreq_hook_t *next,
62 h->next = next;
75 while (last->next)
76 last = last->next;
78 last->next = p->hook;
198 if (hook->next)
199 s = apreq_hook_run(hook->next, param, bb);
308 if (hook->next)
309 s = apreq_hook_run(hook->next, param, bb);
336 if (hook->next)
337 return apreq_hook_run(hook->next, param, bb);
347 apr_status_t s = (hook->next == NULL)
348 ? APR_SUCCESS : apreq_hook_run(hook->next, param, bb);
353 ctx->prev->next = hook->next;