Searched refs:vref (Results 1 – 5 of 5) sorted by relevance
/illumos-gate/usr/src/cmd/fs.d/ |
H A D | volcopy.c | 66 struct vfstab vget, vref; in main() local 191 vfsnull(&vref); in main() 192 vref.vfs_special = argv[2]; in main() 193 ii = getvfsany(fd, &vget, &vref); in main() 196 vfsnull(&vref); in main() 197 vref.vfs_fsckdev = argv[2]; in main() 198 ii = getvfsany(fd, &vget, &vref); in main()
|
H A D | ff.c | 281 struct vfstab vget, vref; in lookup() local 287 vfsnull(&vref); in lookup() 288 vref.vfs_special = special; in lookup() 289 ret = getvfsany(fd, &vget, &vref); in lookup() 292 vfsnull(&vref); in lookup() 293 vref.vfs_fsckdev = special; in lookup() 294 ret = getvfsany(fd, &vget, &vref); in lookup()
|
H A D | switchout.c | 364 struct vfstab vget, vref; in lookup() local 371 vfsnull(&vref); in lookup() 372 vref.vfs_special = special; in lookup() 373 ret = getvfsany(fd, &vget, &vref); in lookup() 376 vfsnull(&vref); in lookup() 377 vref.vfs_fsckdev = special; in lookup() 378 ret = getvfsany(fd, &vget, &vref); in lookup()
|
H A D | fsck.c | 221 struct vfstab vget, vref; in main() local 428 vfsnull(&vref); in main() 446 vref.vfs_mountp = argv[optind]; in main() 448 &vref)) == -1 || in main() 451 vref.vfs_mountp = NULL; in main() 470 vref.vfs_fsckdev = argv[optind]; in main() 475 if (((devfd = open(vref.vfs_fsckdev, in main() 498 &vref)) == -1 || in main() 501 vref.vfs_fsckdev = NULL; in main() 516 vref.vfs_special = argv[optind]; in main() [all …]
|
H A D | mount.c | 231 struct vfstab vget, vref; in main() local 442 vfsnull(&vref); in main() 443 vref.vfs_special = special; in main() 444 vref.vfs_mountp = mountp; in main() 445 vref.vfs_fstype = fstype; in main() 448 while ((ret = getvfsany(fd, &vget, &vref)) > 0) in main() 456 special = vref.vfs_special = mountp; in main() 457 mountp = vref.vfs_mountp = NULL; in main() 459 while ((ret = getvfsany(fd, &vget, &vref)) > 0) in main()
|