Searched refs:vfslist (Results 1 – 5 of 5) sorted by relevance
/freebsd/sbin/mount/ |
H A D | vfslist.c | 41 checkvfsname(const char *vfsname, const char **vfslist) in checkvfsname() argument 44 if (vfslist == NULL) in checkvfsname() 46 while (*vfslist != NULL) { in checkvfsname() 47 if (strcmp(vfsname, *vfslist) == 0) in checkvfsname() 49 ++vfslist; in checkvfsname()
|
H A D | mount.c | 206 const char *mntfromname, **vfslist, *vfstype; in main() local 216 vfslist = NULL; in main() 264 if (vfslist != NULL) in main() 266 vfslist = makevfslist(optarg); in main() 303 if (checkvfsname(fs->fs_vfstype, vfslist)) in main() 329 if (checkvfsname(mntbuf[i].f_fstypename, vfslist)) in main() 340 vfslist)) in main() 353 if (vfslist != NULL) in main() 417 if (vfslist == NULL && ((ep = strchr(argv[0], '@')) != NULL || in main()
|
H A D | Makefile | 3 SRCS= mount.c mount_fs.c getmntopts.c vfslist.c
|
/freebsd/bin/df/ |
H A D | df.c | 69 static int checkvfsname(const char *vfsname, const char **vfslist, int skip); 326 checkvfsname(const char *vfsname, const char **vfslist, int skip) in checkvfsname() argument 329 if (vfslist == NULL) in checkvfsname() 331 while (*vfslist != NULL) { in checkvfsname() 332 if (strcmp(vfsname, *vfslist) == 0) in checkvfsname() 334 ++vfslist; in checkvfsname()
|
/freebsd/sbin/umount/ |
H A D | Makefile | 3 SRCS= umount.c vfslist.c mounttab.c
|