Lines Matching defs:parent
32 for (dom = domain; dom->parent != NULL; dom = dom->parent);
50 } else if (descend && IS_SUBDOMAIN(dom) && dom->parent->next) {
51 dom = dom->parent->next;
70 bool subdomain_enumerates(struct sss_domain_info *parent,
73 if (parent->sd_enumerate == NULL
74 || parent->sd_enumerate[0] == NULL) {
80 if (strcasecmp(parent->sd_enumerate[0], "all") == 0) {
82 } else if (strcasecmp(parent->sd_enumerate[0], "none") == 0) {
85 for (int i=0; parent->sd_enumerate[i]; i++) {
86 if (strcasecmp(parent->sd_enumerate[i], sd_name) == 0) {
290 /* This loops skips the starting parent and start rigth with the first
296 dom && IS_SUBDOMAIN(dom); /* if we get back to a parent, stop */
316 dom && IS_SUBDOMAIN(dom); /* if we get back to a parent, stop */