Symbol: mount_argb
sys/fs/cd9660/cd9660_vfsops.c
116
ma = mount_argb(ma, !(args.flags & ISOFSMNT_NORRIP), "norrip");
sys/fs/cd9660/cd9660_vfsops.c
117
ma = mount_argb(ma, args.flags & ISOFSMNT_GENS, "nogens");
sys/fs/cd9660/cd9660_vfsops.c
118
ma = mount_argb(ma, args.flags & ISOFSMNT_EXTATT, "noextatt");
sys/fs/cd9660/cd9660_vfsops.c
119
ma = mount_argb(ma, !(args.flags & ISOFSMNT_NOJOLIET), "nojoliet");
sys/fs/cd9660/cd9660_vfsops.c
120
ma = mount_argb(ma,
sys/fs/cd9660/cd9660_vfsops.c
122
ma = mount_argb(ma, args.flags & ISOFSMNT_KICONV, "nokiconv");
sys/fs/msdosfs/msdosfs_vfsops.c
211
ma = mount_argb(ma, args.flags & MSDOSFSMNT_SHORTNAME, "noshortname");
sys/fs/msdosfs/msdosfs_vfsops.c
212
ma = mount_argb(ma, args.flags & MSDOSFSMNT_LONGNAME, "nolongname");
sys/fs/msdosfs/msdosfs_vfsops.c
213
ma = mount_argb(ma, !(args.flags & MSDOSFSMNT_NOWIN95), "nowin95");
sys/fs/msdosfs/msdosfs_vfsops.c
214
ma = mount_argb(ma, args.flags & MSDOSFSMNT_KICONV, "nokiconv");
sys/fs/smbfs/smbfs_vfsops.c
106
ma = mount_argb(ma, args.flags & SMBFS_MOUNT_SOFT, "nosoft");
sys/fs/smbfs/smbfs_vfsops.c
107
ma = mount_argb(ma, args.flags & SMBFS_MOUNT_INTR, "nointr");
sys/fs/smbfs/smbfs_vfsops.c
108
ma = mount_argb(ma, args.flags & SMBFS_MOUNT_STRONG, "nostrong");
sys/fs/smbfs/smbfs_vfsops.c
109
ma = mount_argb(ma, args.flags & SMBFS_MOUNT_HAVE_NLS, "nohave_nls");
sys/fs/smbfs/smbfs_vfsops.c
110
ma = mount_argb(ma, !(args.flags & SMBFS_MOUNT_NO_LONG), "nolong");
sys/kern/vfs_mount.c
1111
ma = mount_argb(ma, flags & MNT_RDONLY, "noro");
sys/kern/vfs_mount.c
1112
ma = mount_argb(ma, !(flags & MNT_NOSUID), "nosuid");
sys/kern/vfs_mount.c
1113
ma = mount_argb(ma, !(flags & MNT_NOEXEC), "noexec");
sys/sys/mount.h
1027
struct mntarg *mount_argb(struct mntarg *ma, int flag, const char *name);