Lines Matching refs:mount_flags
190 struct mount_flags {
196 static struct mount_flags mount_flags[] = {
251 for (i = 0; mount_flags[i].opt != NULL; i++) {
252 const char *opt = mount_flags[i].opt;
254 if (mount_flags[i].on)
255 *flags |= mount_flags[i].flag;
257 *flags &= ~mount_flags[i].flag;
602 for (i = 0; mount_flags[i].opt != NULL; i++) {
603 if (mount_flags[i].on && (flags & mount_flags[i].flag) &&
604 fuse_opt_add_opt(mnt_optsp, mount_flags[i].opt) == -1)