Lines Matching refs:mount_flags
137 struct mount_flags {
143 static const struct mount_flags mount_flags[] = {
173 for (i = 0; mount_flags[i].opt != NULL; i++) {
174 const char *opt = mount_flags[i].opt;
176 if (mount_flags[i].on)
177 *flags |= mount_flags[i].flag;
179 *flags &= ~mount_flags[i].flag;
577 for (i = 0; mount_flags[i].opt != NULL; i++) {
578 if (mount_flags[i].on && (flags & mount_flags[i].flag) &&
579 fuse_opt_add_opt(mnt_optsp, mount_flags[i].opt) == -1)