Lines Matching refs:fuse
34 /* Compatibility header with FUSE 3.0 API. Only declarations that have
38 # error Do not include this header directly. Include <fuse.h> instead.
49 * FUSE 2.3 and changed on FUSE 3.0. */
53 /* The table of file system operations in FUSE 3.0. */
57 /* getdir has been removed as of FUSE 3.0. */
68 /* utime has been removed as of FUSE 3.0. */
88 /* ftruncate has been removed as of FUSE 3.0. */
89 /* fgetattr has been removed as of FUSE 3.0. */
93 /* flag_* have been removed as of FUSE 3.0. */
102 /* Mount a FUSE 3.0 filesystem. */
103 int fuse_mount_v30(struct fuse *fuse, const char *mountpoint);
105 /* Unmount a FUSE 3.0 filesystem. */
106 void fuse_unmount_v30(struct fuse *);
108 /* Create a FUSE 3.0 filesystem. */
109 struct fuse *fuse_new_v30(struct fuse_args *args,
112 /* Destroy a FUSE 3.0 filesystem. */
113 void fuse_destroy_v30(struct fuse *fuse);
115 /* Multithreaded event loop for FUSE >= 3.0 < 3.2. Of course, every
119 int fuse_loop_mt_v30(struct fuse *fuse, int clone_fd);
121 /* Parse common options for FUSE 3.0 */