Lines Matching refs:mntp
191 struct mnttab mntp; in quotall() local
201 while (getmntent(fstab, &mntp) == 0) { in quotall()
202 if (strcmp(mntp.mnt_fstype, MNTTYPE_UFS) != 0) in quotall()
205 if ((cp = getfullrawname(mntp.mnt_special)) == NULL) in quotall()
211 if (check(cp, mntp.mnt_mountp) == 0) { in quotall()
246 struct mnttab mntp; in check() local
253 while (getmntent(fstab, &mntp) == 0) { in check()
254 if (strcmp(mntp.mnt_fstype, MNTTYPE_UFS) != 0) in check()
256 if (strcmp(mntp.mnt_special, file) == 0) { in check()
257 fsdir = mntp.mnt_mountp; in check()
468 struct mnttab mntp; in getdev() local
490 while (getmntent(fstab, &mntp) == 0) { in getdev()
491 if (strcmp(mntp.mnt_mountp, *devpp) == 0) { in getdev()
492 if (strcmp(mntp.mnt_fstype, MNTTYPE_UFS) != 0) { in getdev()
499 if ((cp = getfullrawname(mntp.mnt_special)) == NULL) in getdev()
500 cp = mntp.mnt_special; in getdev()