Home | History | Annotate | Download | only in kconfig

Lines Matching refs:child

429 	struct menu *child;
476 for (child = menu->list; child; child = child->next) {
477 if (menu_is_visible(child) && child->sym == def_sym)
478 def_menu = child;
578 for (child = menu->list; child; child = child->next)
579 build_conf(child);
719 struct menu *child;
729 for (child = menu->list; child; child = child->next) {
730 if (!menu_is_visible(child))
732 item_make("%s", menu_get_prompt(child));
733 item_set_data(child);
734 if (child->sym == active)
736 if (child->sym == sym_get_choice_value(menu->sym))
747 child = item_data();
748 sym_set_tristate_value(child->sym, yes);
753 child = item_data();
754 show_help(child);
755 active = child->sym;