• Home
  • Raw
  • Download

Lines Matching refs:child

594 	struct menu* child;  in updateMenuList()  local
612 for (child = menu->list; child; child = child->next) { in updateMenuList()
614 type = child->prompt ? child->prompt->type : P_UNKNOWN; in updateMenuList()
618 if (!(child->flags & MENU_ROOT)) in updateMenuList()
622 if (child->flags & MENU_ROOT) in updateMenuList()
629 visible = menu_is_visible(child); in updateMenuList()
630 if (!menuSkip(child)) { in updateMenuList()
631 if (!child->sym && !child->list && !child->prompt) in updateMenuList()
633 if (!item || item->menu != child) in updateMenuList()
634 item = new ConfigItem(parent, last, child, visible); in updateMenuList()
639 updateMenuList(item, child); in updateMenuList()
646 if (item && item->menu == child) { in updateMenuList()
659 struct menu* child; in updateMenuList() local
677 for (child = menu->list; child; child = child->next) { in updateMenuList()
679 type = child->prompt ? child->prompt->type : P_UNKNOWN; in updateMenuList()
683 if (!(child->flags & MENU_ROOT)) in updateMenuList()
687 if (child->flags & MENU_ROOT) in updateMenuList()
694 visible = menu_is_visible(child); in updateMenuList()
695 if (!menuSkip(child)) { in updateMenuList()
696 if (!child->sym && !child->list && !child->prompt) in updateMenuList()
698 if (!item || item->menu != child) in updateMenuList()
699 item = new ConfigItem(this, last, child, visible); in updateMenuList()
704 updateMenuList(item, child); in updateMenuList()
711 if (item && item->menu == child) { in updateMenuList()
1826 struct menu *child; in fixup_rootmenu() local
1830 for (child = menu->list; child; child = child->next) { in fixup_rootmenu()
1831 if (child->prompt && child->prompt->type == P_MENU) { in fixup_rootmenu()
1833 fixup_rootmenu(child); in fixup_rootmenu()
1836 fixup_rootmenu(child); in fixup_rootmenu()