Lines Matching refs:mntp
193 struct mnttab mntp; in quotall() local
203 while (getmntent(fstab, &mntp) == NULL) { in quotall()
204 if (strcmp(mntp.mnt_fstype, MNTTYPE_UFS) != 0) in quotall()
207 if ((cp = getfullrawname(mntp.mnt_special)) == NULL) in quotall()
213 if (check(cp, mntp.mnt_mountp) == 0) { in quotall()
248 struct mnttab mntp; in check() local
255 while (getmntent(fstab, &mntp) == NULL) { in check()
256 if (strcmp(mntp.mnt_fstype, MNTTYPE_UFS) != 0) in check()
258 if (strcmp(mntp.mnt_special, file) == 0) { in check()
259 fsdir = mntp.mnt_mountp; in check()
470 struct mnttab mntp; in getdev() local
492 while (getmntent(fstab, &mntp) == NULL) { in getdev()
493 if (strcmp(mntp.mnt_mountp, *devpp) == 0) { in getdev()
494 if (strcmp(mntp.mnt_fstype, MNTTYPE_UFS) != 0) { in getdev()
501 if ((cp = getfullrawname(mntp.mnt_special)) == NULL) in getdev()
502 cp = mntp.mnt_special; in getdev()