Lines Matching defs:child
452 struct menu *child;
487 for (child = menu->list; child; child = child->next) {
488 if (!menu_is_visible(child))
490 if (!child->sym) {
491 printf("%*c %s\n", indent, '*', menu_get_prompt(child));
495 if (child->sym == def_sym) {
500 printf(" %d. %s", cnt, menu_get_prompt(child));
501 if (child->sym->name)
502 printf(" (%s)", child->sym->name);
503 if (!sym_has_value(child->sym))
542 for (child = menu->list; child; child = child->next) {
543 if (!child->sym || !menu_is_visible(child))
548 if (!child)
551 print_help(child);
554 sym_set_tristate_value(child->sym, yes);
555 for (child = child->list; child; child = child->next) {
557 conf(child);
568 struct menu *child;
625 for (child = menu->list; child; child = child->next)
626 conf(child);
634 struct menu *child;
663 for (child = menu->list; child; child = child->next)
664 check_conf(child);