/titanic_41/usr/src/cmd/fs.d/cachefs/cfsd/ |
H A D | cfsd_subr.c | 257 struct mnttab mpref; in subr_cache_setup() local 332 mpref.mnt_special = NULL; in subr_cache_setup() 333 mpref.mnt_mountp = NULL; in subr_cache_setup() 334 mpref.mnt_fstype = "cachefs"; in subr_cache_setup() 335 mpref.mnt_mntopts = NULL; in subr_cache_setup() 336 mpref.mnt_time = NULL; in subr_cache_setup() 337 while ((xx = getmntany(fin, &minfo, &mpref)) != -1) { in subr_cache_setup()
|
/titanic_41/usr/src/cmd/hal/addons/storage/ |
H A D | addon-storage.c | 244 struct mnttab mpref; in is_mounted() local 250 bzero(&mpref, sizeof (mpref)); in is_mounted() 251 mpref.mnt_special = (char *)device_file; in is_mounted() 252 if (getmntany(f, &mp, &mpref) == 0) { in is_mounted()
|
/titanic_41/usr/src/lib/libgrubmgmt/common/ |
H A D | libgrub_fs.c | 445 struct mnttab mpref = {0}; in grub_current_root() local 448 mpref.mnt_mountp = "/"; in grub_current_root() 456 rc = getmntany(fp, &mp, &mpref); in grub_current_root() 528 struct mnttab mpref = {0}; in grub_fsd_get_mountp() local 535 mpref.mnt_special = fsd->gfs_dev; in grub_fsd_get_mountp() 536 mpref.mnt_fstype = fstyp; in grub_fsd_get_mountp() 538 if ((rc = getmntany(fp, &mp, &mpref)) == 0) in grub_fsd_get_mountp()
|
/titanic_41/usr/src/cmd/hal/probing/storage/ |
H A D | probe-storage.c | 51 struct mnttab mpref; in is_mounted() local 57 bzero(&mpref, sizeof (mpref)); in is_mounted() 58 mpref.mnt_special = (char *)device_file; in is_mounted() 59 if (getmntany(f, &mp, &mpref) == 0) { in is_mounted()
|
/titanic_41/usr/src/cmd/fs.d/ufs/quotacheck/ |
H A D | quotacheck.c | 274 struct mnttab mntp, mpref; in preen() local 286 memset(&mpref, 0, sizeof (struct mnttab)); in preen() 305 mpref.mnt_special = *lp; in preen() 306 if (getmntany(mtab, &mntp, &mpref) == 0 && in preen() 330 mpref.mnt_special = bdev; in preen() 331 if (getmntany(mtab, &mntp, &mpref) != 0) { in preen()
|
/titanic_41/usr/src/cmd/luxadm/ |
H A D | qlgcupdate.c | 704 struct mnttab mpref; in q_getbootdev() local 717 mntnull(&mpref); in q_getbootdev() 718 mpref.mnt_mountp = (char *)root; in q_getbootdev() 720 if (getmntany(fp, &mp, &mpref) != 0 || in q_getbootdev() 721 mpref.mnt_mountp == NULL) { in q_getbootdev()
|
/titanic_41/usr/src/cmd/boot/installgrub/ |
H A D | installgrub.c | 1556 struct mnttab mp = {0}, mpref = {0}; in copy_stage2_to_pcfs() local 1579 mpref.mnt_special = buf; in copy_stage2_to_pcfs() 1580 if (getmntany(mntfp, &mp, &mpref) != 0) { in copy_stage2_to_pcfs() 1590 if (getmntany(mntfp, &mp, &mpref) != 0) { in copy_stage2_to_pcfs()
|
/titanic_41/usr/src/cmd/rmvolmgr/ |
H A D | rmm_common.c | 1243 struct mnttab mpref = { NULL, NULL, NULL, NULL, NULL }; in rmm_get_mnttab_mount_point() local 1246 mpref.mnt_special = (char *)special; in rmm_get_mnttab_mount_point() 1247 if (getmntany(f, &mnt, &mpref) == 0) { in rmm_get_mnttab_mount_point()
|
/titanic_41/usr/src/cmd/boot/bootadm/ |
H A D | bootadm.c | 5302 struct mnttab mpref = {0}; local 5317 mpref.mnt_special = special; 5318 mpref.mnt_fstype = fstype; 5320 ret = getmntany(mntfp, &mp, &mpref); 6532 struct mnttab mpref = {0}; local 6552 mpref.mnt_mountp = "/"; 6554 mpref.mnt_mountp = osroot; 6556 ret = getmntany(mntfp, &mp, &mpref); 7190 struct mnttab mpref = {0}; local 7210 mpref.mnt_mountp = "/"; [all …]
|