Lines Matching full:scheme
229 const char *scheme = NULL; in wizard_partition() local
248 if (strcmp(gc->lg_name, "scheme") == 0) { in wizard_partition()
249 scheme = gc->lg_val; in wizard_partition()
255 /* Treat uncommitted scheme deletions as no scheme */ in wizard_partition()
256 if (scheme != NULL && strcmp(scheme, "(none)") == 0) in wizard_partition()
257 scheme = NULL; in wizard_partition()
276 if (choice == BSDDIALOG_NO && scheme != NULL && !is_scheme_bootable(scheme)) { in wizard_partition()
281 "The existing partition scheme on this " in wizard_partition()
285 scheme); in wizard_partition()
292 scheme = choose_part_type(default_scheme()); in wizard_partition()
293 if (scheme == NULL) in wizard_partition()
295 gpart_partition(disk, scheme); in wizard_partition()
298 if (scheme == NULL || choice == 0) { in wizard_partition()
299 if (gpart != NULL && scheme != NULL) { in wizard_partition()
310 scheme = choose_part_type(default_scheme()); in wizard_partition()
311 if (scheme == NULL) in wizard_partition()
313 gpart_partition(disk, scheme); in wizard_partition()
316 if (strcmp(scheme, "MBR") == 0) { in wizard_partition()