Home | History | Annotate | Download | only in kconfig

Lines Matching refs:child

136 			 * depending whether it's at the view root or a child.
588 struct menu* child;
606 for (child = menu->list; child; child = child->next) {
608 type = child->prompt ? child->prompt->type : P_UNKNOWN;
612 if (!(child->flags & MENU_ROOT))
616 if (child->flags & MENU_ROOT)
623 visible = menu_is_visible(child);
624 if (!menuSkip(child)) {
625 if (!child->sym && !child->list && !child->prompt)
627 if (!item || item->menu != child)
628 item = new ConfigItem(parent, last, child, visible);
633 updateMenuList(item, child);
640 if (item && item->menu == child) {
653 struct menu* child;
671 for (child = menu->list; child; child = child->next) {
673 type = child->prompt ? child->prompt->type : P_UNKNOWN;
677 if (!(child->flags & MENU_ROOT))
681 if (child->flags & MENU_ROOT)
688 visible = menu_is_visible(child);
689 if (!menuSkip(child)) {
690 if (!child->sym && !child->list && !child->prompt)
692 if (!item || item->menu != child)
693 item = new ConfigItem(parent, last, child, visible);
698 updateMenuList(item, child);
705 if (item && item->menu == child) {
1811 struct menu *child;
1815 for (child = menu->list; child; child = child->next) {
1816 if (child->prompt && child->prompt->type == P_MENU) {
1818 fixup_rootmenu(child);
1821 fixup_rootmenu(child);