Lines Matching refs:child
765 struct menu *child; in build_conf() local
825 for (child = menu->list; child; child = child->next) { in build_conf()
826 if (menu_is_visible(child) && child->sym == def_sym) in build_conf()
827 def_menu = child; in build_conf()
900 for (child = menu->list; child; child = child->next) in build_conf()
901 build_conf(child); in build_conf()
1234 struct menu *child = NULL; in conf_choice() local
1250 for (i = 0, child = menu->list; child; child = child->next) { in conf_choice()
1251 if (!show_all_items && !menu_is_visible(child)) in conf_choice()
1254 if (child->sym == sym_calc_choice(menu)) in conf_choice()
1255 item_make(child, ':', "<X> %s", in conf_choice()
1256 menu_get_prompt(child)); in conf_choice()
1257 else if (child->sym) in conf_choice()
1258 item_make(child, ':', " %s", in conf_choice()
1259 menu_get_prompt(child)); in conf_choice()
1261 item_make(child, ':', "*** %s ***", in conf_choice()
1262 menu_get_prompt(child)); in conf_choice()
1264 if (child->sym == active){ in conf_choice()
1330 child = item_data(); in conf_choice()
1331 if (!child || !menu_is_visible(child) || !child->sym) in conf_choice()
1337 choice_set_value(menu, child->sym); in conf_choice()
1341 show_help(child); in conf_choice()
1342 active = child->sym; in conf_choice()