Lines Matching refs:child
470 struct menu *child;
534 for (child = menu->list; child; child = child->next) {
535 if (menu_is_visible(child) && child->sym == def_sym)
536 def_menu = child;
639 for (child = menu->list; child; child = child->next)
640 build_conf(child);
799 struct menu *child;
809 for (child = menu->list; child; child = child->next) {
810 if (!menu_is_visible(child))
812 if (child->sym)
813 item_make("%s", menu_get_prompt(child));
815 item_make("*** %s ***", menu_get_prompt(child));
818 item_set_data(child);
819 if (child->sym == active)
821 if (child->sym == sym_get_choice_value(menu->sym))
834 child = item_data();
835 if (!child->sym)
838 sym_set_tristate_value(child->sym, yes);
843 child = item_data();
844 show_help(child);
845 active = child->sym;