Lines Matching refs:child
737 struct menu *child; in build_conf() local
797 for (child = menu->list; child; child = child->next) { in build_conf()
798 if (menu_is_visible(child) && child->sym == def_sym) in build_conf()
799 def_menu = child; in build_conf()
913 for (child = menu->list; child; child = child->next) in build_conf()
914 build_conf(child); in build_conf()
1228 struct menu *child = NULL; in conf_choice() local
1244 for (i = 0, child = menu->list; child; child = child->next) { in conf_choice()
1245 if (!show_all_items && !menu_is_visible(child)) in conf_choice()
1248 if (child->sym == sym_get_choice_value(menu->sym)) in conf_choice()
1249 item_make(child, ':', "<X> %s", in conf_choice()
1250 menu_get_prompt(child)); in conf_choice()
1251 else if (child->sym) in conf_choice()
1252 item_make(child, ':', " %s", in conf_choice()
1253 menu_get_prompt(child)); in conf_choice()
1255 item_make(child, ':', "*** %s ***", in conf_choice()
1256 menu_get_prompt(child)); in conf_choice()
1258 if (child->sym == active){ in conf_choice()
1322 child = item_data(); in conf_choice()
1323 if (!child || !menu_is_visible(child) || !child->sym) in conf_choice()
1329 sym_set_tristate_value(child->sym, yes); in conf_choice()
1333 show_help(child); in conf_choice()
1334 active = child->sym; in conf_choice()