Lines Matching defs:child
387 authz_section_conf *child;
448 child = conf->section->first;
450 if (child) {
451 while (child->next) {
452 child = child->next;
455 child->next = section;
523 authz_section_conf *child;
543 child = old_section->first;
545 if (child) {
546 while (child->next) {
547 child = child->next;
550 child->next = section;
592 authz_section_conf *child = section->first;
595 while (child) {
596 if (child->first) {
597 if (authz_core_check_section(p, s, child, 0) != OK) {
601 if (child->negate && child->op != section->op) {
602 authz_section_conf *next = child->next;
605 child = child->first;
608 prev->next = child;
611 section->first = child;
615 child->negate = !child->negate;
616 } while (child->next && (child = child->next));
618 child->next = next;
622 prev = child;
623 child = child->next;
626 child = section->first;
628 while (child) {
629 if (!child->negate) {
634 child = child->next;
744 authz_section_conf *child = section->first;
748 while (child) {
751 child_result = apply_authz_sections(r, child, section->op);
788 child = child->next;