Lines Matching refs:m
67 struct mntent *m; in getfsspec() local
72 while ((m = fstab_fetch (state)) != NULL) in getfsspec()
73 if (strcmp (m->mnt_fsname, name) == 0) in getfsspec()
83 struct mntent *m; in getfsfile() local
88 while ((m = fstab_fetch (state)) != NULL) in getfsfile()
89 if (strcmp (m->mnt_dir, name) == 0) in getfsfile()
156 struct mntent *m; in fstab_convert() local
159 m = &state->fs_mntres; in fstab_convert()
162 f->fs_spec = m->mnt_fsname; in fstab_convert()
163 f->fs_file = m->mnt_dir; in fstab_convert()
164 f->fs_vfstype = m->mnt_type; in fstab_convert()
165 f->fs_mntops = m->mnt_opts; in fstab_convert()
166 f->fs_type = (__hasmntopt (m, FSTAB_RW) ? FSTAB_RW in fstab_convert()
167 : __hasmntopt (m, FSTAB_RQ) ? FSTAB_RQ in fstab_convert()
168 : __hasmntopt (m, FSTAB_RO) ? FSTAB_RO in fstab_convert()
169 : __hasmntopt (m, FSTAB_SW) ? FSTAB_SW in fstab_convert()
170 : __hasmntopt (m, FSTAB_XX) ? FSTAB_XX in fstab_convert()
172 f->fs_freq = m->mnt_freq; in fstab_convert()
173 f->fs_passno = m->mnt_passno; in fstab_convert()