Lines Matching refs:disks
108 struct bsddialog_menuitem *disks = NULL; in boot_disk_select() local
153 disks = realloc(disks, (++n)*sizeof(disks[0])); in boot_disk_select()
154 disks[n-1].name = pp->lg_name; in boot_disk_select()
168 disks[n-1].prefix = ""; in boot_disk_select()
169 disks[n-1].on = false; in boot_disk_select()
170 disks[n-1].depth = 0; in boot_disk_select()
171 disks[n-1].desc = strdup(diskdesc); in boot_disk_select()
172 disks[n-1].bottomdesc = ""; in boot_disk_select()
181 n, disks, &selected); in boot_disk_select()
184 strdup(disks[selected].name) : NULL; in boot_disk_select()
186 chosen = strdup(disks[0].name); in boot_disk_select()
192 free((char*)disks[i].desc); in boot_disk_select()