Home
last modified time | relevance | path

Searched refs:vref (Results 1 – 5 of 5) sorted by relevance

/titanic_41/usr/src/cmd/fs.d/
H A Dvolcopy.c69 struct vfstab vget, vref; in main() local
194 vfsnull(&vref); in main()
195 vref.vfs_special = argv[2]; in main()
196 ii = getvfsany(fd, &vget, &vref); in main()
199 vfsnull(&vref); in main()
200 vref.vfs_fsckdev = argv[2]; in main()
201 ii = getvfsany(fd, &vget, &vref); in main()
H A Dff.c282 struct vfstab vget, vref; in lookup() local
288 vfsnull(&vref); in lookup()
289 vref.vfs_special = special; in lookup()
290 ret = getvfsany(fd, &vget, &vref); in lookup()
293 vfsnull(&vref); in lookup()
294 vref.vfs_fsckdev = special; in lookup()
295 ret = getvfsany(fd, &vget, &vref); in lookup()
H A Dswitchout.c366 struct vfstab vget, vref; in lookup() local
373 vfsnull(&vref); in lookup()
374 vref.vfs_special = special; in lookup()
375 ret = getvfsany(fd, &vget, &vref); in lookup()
378 vfsnull(&vref); in lookup()
379 vref.vfs_fsckdev = special; in lookup()
380 ret = getvfsany(fd, &vget, &vref); in lookup()
H A Dfsck.c221 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 Dmount.c240 struct vfstab vget, vref; in main() local
451 vfsnull(&vref); in main()
452 vref.vfs_special = special; in main()
453 vref.vfs_mountp = mountp; in main()
454 vref.vfs_fstype = fstype; in main()
457 while ((ret = getvfsany(fd, &vget, &vref)) > 0) in main()
465 special = vref.vfs_special = mountp; in main()
466 mountp = vref.vfs_mountp = NULL; in main()
468 while ((ret = getvfsany(fd, &vget, &vref)) > 0) in main()