Lines Matching refs:mop
163 mntopt_t *mop; in mntfs_optsize() local
166 mop = &vfsp->vfs_mntopts.mo_list[i]; in mntfs_optsize()
167 if (mop->mo_flags & MO_NODISPLAY) in mntfs_optsize()
169 if (mop->mo_flags & MO_SET) { in mntfs_optsize()
172 size += strlen(mop->mo_name); in mntfs_optsize()
176 if (mop->mo_arg != NULL) { in mntfs_optsize()
177 size += strlen(mop->mo_arg) + 1; in mntfs_optsize()
204 mntopt_t *mop; in mntfs_optprint() local
208 mop = &vfsp->vfs_mntopts.mo_list[i]; in mntfs_optprint()
209 if (mop->mo_flags & MO_NODISPLAY) in mntfs_optprint()
211 if (mop->mo_flags & MO_SET) { in mntfs_optprint()
217 "%s", mop->mo_name); in mntfs_optprint()
221 if (mop->mo_arg != NULL) { in mntfs_optprint()
223 mop->mo_arg); in mntfs_optprint()