Lines Matching refs:mnt
106 mntent_t mnt; in mount_pcfs() local
125 memset((voidp) &mnt, 0, sizeof(mnt)); in mount_pcfs()
126 mnt.mnt_dir = mntdir; in mount_pcfs()
127 mnt.mnt_fsname = fs_name; in mount_pcfs()
128 mnt.mnt_type = MNTTAB_TYPE_PCFS; in mount_pcfs()
129 mnt.mnt_opts = opts; in mount_pcfs()
131 flags = compute_mount_flags(&mnt); in mount_pcfs()
134 flags |= autofs_compute_mount_flags(&mnt); in mount_pcfs()
145 if ((mask = hasmntval(&mnt, MNTTAB_OPT_MASK)) > 0) in mount_pcfs()
153 if ((mask = hasmntval(&mnt, MNTTAB_OPT_DIRMASK)) > 0) in mount_pcfs()
161 if ((str = hasmntstr(&mnt, MNTTAB_OPT_USER)) != NULL) { in mount_pcfs()
175 if ((str = hasmntstr(&mnt, MNTTAB_OPT_GROUP)) != NULL) { in mount_pcfs()
197 …return mount_fs(&mnt, flags, (caddr_t) & pcfs_args, 0, type, 0, NULL, mnttab_file_name, on_autofs); in mount_pcfs()