Lines Matching refs:child
342 struct menu *child; in build_conf() local
406 for (child = menu->list; child; child = child->next) { in build_conf()
407 if (menu_is_visible(child) && child->sym == def_sym) in build_conf()
408 def_menu = child; in build_conf()
511 for (child = menu->list; child; child = child->next) in build_conf()
512 build_conf(child); in build_conf()
646 struct menu *child; in conf_choice() local
656 for (child = menu->list; child; child = child->next) { in conf_choice()
657 if (!menu_is_visible(child)) in conf_choice()
659 if (child->sym) in conf_choice()
660 item_make("%s", _(menu_get_prompt(child))); in conf_choice()
662 item_make("*** %s ***", _(menu_get_prompt(child))); in conf_choice()
665 item_set_data(child); in conf_choice()
666 if (child->sym == active) in conf_choice()
668 if (child->sym == sym_get_choice_value(menu->sym)) in conf_choice()
679 child = item_data(); in conf_choice()
680 if (!child->sym) in conf_choice()
683 sym_set_tristate_value(child->sym, yes); in conf_choice()
688 child = item_data(); in conf_choice()
689 show_help(child); in conf_choice()
690 active = child->sym; in conf_choice()