Lines Matching defs:mount_opts
41 struct mount_opts {
51 { "allow_other", offsetof(struct mount_opts, allow_other), 1 },
52 { "max_read=%u", offsetof(struct mount_opts, max_read), 1 },
106 unsigned get_max_read(struct mount_opts *o)
115 struct mount_opts *mo = data;
260 struct mount_opts *parse_mount_opts(struct fuse_args *args)
262 struct mount_opts *mo;
264 mo = (struct mount_opts*) malloc(sizeof(struct mount_opts));
268 memset(mo, 0, sizeof(struct mount_opts));
281 void destroy_mount_opts(struct mount_opts *mo)
287 int fuse_kern_mount(const char *mountpoint, struct mount_opts *mo)