Lines Matching refs:child
467 struct menu *child; in build_conf() local
531 for (child = menu->list; child; child = child->next) { in build_conf()
532 if (menu_is_visible(child) && child->sym == def_sym) in build_conf()
533 def_menu = child; in build_conf()
636 for (child = menu->list; child; child = child->next) in build_conf()
637 build_conf(child); in build_conf()
796 struct menu *child; in conf_choice() local
806 for (child = menu->list; child; child = child->next) { in conf_choice()
807 if (!menu_is_visible(child)) in conf_choice()
809 if (child->sym) in conf_choice()
810 item_make("%s", menu_get_prompt(child)); in conf_choice()
812 item_make("*** %s ***", menu_get_prompt(child)); in conf_choice()
815 item_set_data(child); in conf_choice()
816 if (child->sym == active) in conf_choice()
818 if (child->sym == sym_get_choice_value(menu->sym)) in conf_choice()
831 child = item_data(); in conf_choice()
832 if (!child->sym) in conf_choice()
835 sym_set_tristate_value(child->sym, yes); in conf_choice()
840 child = item_data(); in conf_choice()
841 show_help(child); in conf_choice()
842 active = child->sym; in conf_choice()