/src/usr.sbin/sysinst/ |
geom.c | 51 char diskpath[MAXPATHLEN]; local in function:disk_ioctl 56 fd = opendisk(disk, O_RDONLY, diskpath, sizeof(diskpath), 0);
|
target.c | 561 char diskpath[MAXPATHLEN]; local in function:delete_wedge 564 fd = opendisk(disk, O_RDWR, diskpath, sizeof(diskpath), 0);
|
disklabel.c | 199 char diskpath[MAXPATHLEN]; local in function:disklabel_parts_read 210 fd = opendisk(disk, O_RDONLY, diskpath, sizeof(diskpath), 0);
|
gpt.c | 267 char diskpath[MAXPATHLEN]; local in function:gpt_read_from_disk 394 fd = opendisk(parts->dp.disk, O_RDONLY, diskpath, sizeof(diskpath), 0); 1410 char diskpath[MAXPATHLEN]; local in function:gpt_add_wedge 1431 fd = opendisk(disk, O_RDWR, diskpath, sizeof(diskpath), 0); 1536 char diskpath[MAXPATHLEN]; local in function:gpt_write_to_disk 1547 fd = opendisk(arg->disk, O_RDWR, diskpath, sizeof(diskpath), 0);
|
mbr.c | 537 char diskpath[MAXPATHLEN]; local in function:read_mbr 549 fd = opendisk(disk, O_RDONLY, diskpath, sizeof(diskpath), 0); 672 char diskpath[MAXPATHLEN]; local in function:write_mbr 687 diskpath, sizeof(diskpath), 0); 2647 char diskpath[MAXPATHLEN]; local in function:mbr_free_wedge 2650 *fd = opendisk(disk, O_RDWR, diskpath, 2651 sizeof(diskpath), 0); 2694 char diskpath[MAXPATHLEN] local in function:mbr_destroy_part_scheme 2998 char diskpath[MAXPATHLEN]; local in function:add_wedge [all...] |
/src/usr.sbin/sysinst/arch/shark/ |
md.c | 132 char diskpath[MAXPATHLEN]; local in function:md_pre_disklabel 134 if (clear_mbr(pm->diskdev, diskpath, sizeof(diskpath)) == -1) { 135 msg_fmt_display(MSG_badclearmbr, "%s", diskpath); 204 * the output diskpath buffer for further usage in error messages. 207 clear_mbr(const char *disk, char *diskpath, size_t diskpathlen) 212 fd = opendisk(disk, O_WRONLY, diskpath, diskpathlen, 0);
|
/src/usr.sbin/sysinst/arch/ofppc/ |
md.c | 642 char buf[512], diskpath[MAXPATHLEN]; local in function:check_rdb 649 fd = opendisk(pm->diskdev, O_RDONLY, diskpath, sizeof(diskpath), 0);
|