Lines Matching defs:mntbuf
109 struct statvfs *mntbuf;
191 if ((mntbuf = getmntpt(fs->fs_file))
196 mntfromname = mntbuf->f_mntfromname;
209 if ((mntsize = getmntinfo(&mntbuf, MNT_NOWAIT)) == 0)
212 if (checkvfsname(mntbuf[i].f_fstypename,
215 prmount(&mntbuf[i]);
238 (mntbuf = getmntpt(canonical_path)) == NULL) &&
239 (mntbuf = getmntpt(*argv)) == NULL) {
245 mntfromname = mntbuf->f_mntfromname;
246 if ((fs = getfsfile(mntbuf->f_mntonname)) != NULL) {
252 mntonname = mntbuf->f_mntonname;
253 fstypename = mntbuf->f_fstypename;
275 (mntbuf = getmntpt(canonical_path))
277 (mntbuf = getmntpt(*argv)) == NULL)
279 mntfromname = mntbuf->f_mntfromname;
659 struct statvfs *mntbuf;
662 mntsize = getmntinfo(&mntbuf, MNT_NOWAIT);
664 if (strcmp(mntbuf[i].f_mntfromname, name) == 0 ||
665 strcmp(mntbuf[i].f_mntonname, name) == 0)
666 return &mntbuf[i];