Lines Matching refs:child
469 struct menu *child; in build_conf() local
533 for (child = menu->list; child; child = child->next) { in build_conf()
534 if (menu_is_visible(child) && child->sym == def_sym) in build_conf()
535 def_menu = child; in build_conf()
638 for (child = menu->list; child; child = child->next) in build_conf()
639 build_conf(child); in build_conf()
798 struct menu *child; in conf_choice() local
808 for (child = menu->list; child; child = child->next) { in conf_choice()
809 if (!menu_is_visible(child)) in conf_choice()
811 if (child->sym) in conf_choice()
812 item_make("%s", menu_get_prompt(child)); in conf_choice()
814 item_make("*** %s ***", menu_get_prompt(child)); in conf_choice()
817 item_set_data(child); in conf_choice()
818 if (child->sym == active) in conf_choice()
820 if (child->sym == sym_get_choice_value(menu->sym)) in conf_choice()
833 child = item_data(); in conf_choice()
834 if (!child->sym) in conf_choice()
837 sym_set_tristate_value(child->sym, yes); in conf_choice()
842 child = item_data(); in conf_choice()
843 show_help(child); in conf_choice()
844 active = child->sym; in conf_choice()