Lines Matching refs:child
470 struct menu *child; in build_conf() local
535 for (child = menu->list; child; child = child->next) { in build_conf()
536 if (menu_is_visible(child) && child->sym == def_sym) in build_conf()
537 def_menu = child; in build_conf()
640 for (child = menu->list; child; child = child->next) in build_conf()
641 build_conf(child); in build_conf()
803 struct menu *child; in conf_choice() local
813 for (child = menu->list; child; child = child->next) { in conf_choice()
814 if (!menu_is_visible(child)) in conf_choice()
816 if (child->sym) in conf_choice()
817 item_make("%s", _(menu_get_prompt(child))); in conf_choice()
819 item_make("*** %s ***", _(menu_get_prompt(child))); in conf_choice()
822 item_set_data(child); in conf_choice()
823 if (child->sym == active) in conf_choice()
825 if (child->sym == sym_get_choice_value(menu->sym)) in conf_choice()
838 child = item_data(); in conf_choice()
839 if (!child->sym) in conf_choice()
842 sym_set_tristate_value(child->sym, yes); in conf_choice()
847 child = item_data(); in conf_choice()
848 show_help(child); in conf_choice()
849 active = child->sym; in conf_choice()