Lines Matching defs:hooks
30 * GET /server-info?hooks - Returns a listing of the modules active for each hook
361 apr_array_header_t *hooks = hook_get();
364 if (!hooks) {
368 elts = (hook_struct_t *) hooks->elts;
370 for (i = 0; i < hooks->nelts; i++) {
637 apr_array_header_t *hooks = hook_get();
639 if (!hooks) {
643 if (r->args && strcasecmp(r->args, "hooks") == 0) {
650 elts = (hook_struct_t *) hooks->elts;
652 for (i = 0; i < hooks->nelts; i++) {
800 "<a href=\"?hooks\">Active Hooks</a>, "
832 if (!r->args || !strcasecmp(r->args, "hooks")) {