Lines Matching refs:child
458 struct menu *child; in build_conf() local
522 for (child = menu->list; child; child = child->next) { in build_conf()
523 if (menu_is_visible(child) && child->sym == def_sym) in build_conf()
524 def_menu = child; in build_conf()
593 for (child = menu->list; child; child = child->next) in build_conf()
594 build_conf(child); in build_conf()
601 struct menu *child; in conf_choice() local
611 for (child = menu->list; child; child = child->next) { in conf_choice()
612 if (!menu_is_visible(child)) in conf_choice()
614 if (child->sym) in conf_choice()
615 item_make("%s", menu_get_prompt(child)); in conf_choice()
617 item_make("*** %s ***", menu_get_prompt(child)); in conf_choice()
620 item_set_data(child); in conf_choice()
621 if (child->sym == active) in conf_choice()
623 if (child->sym == sym_calc_choice(menu)) in conf_choice()
636 child = item_data(); in conf_choice()
637 if (!child->sym) in conf_choice()
640 choice_set_value(menu, child->sym); in conf_choice()
645 child = item_data(); in conf_choice()
646 show_help(child); in conf_choice()
647 active = child->sym; in conf_choice()