Lines Matching refs:fuse
55 int fuse_daemonize_rev0(struct fuse* fuse) __RENAME(fuse_daemonize);
56 int fuse_mount(struct fuse *fuse, const char *mountpoint);
59 struct fuse *fuse_new(struct fuse_args *args, const void *op, size_t op_size,
61 void fuse_destroy(struct fuse* fuse);
63 void fuse_unmount(struct fuse* fuse);
67 * prototype with that of FUSE. We keep ABI compatibility with
76 " include <fuse.h> for correct reference")
78 fuse_daemonize_rev0(struct fuse* fuse __attribute__((__unused__))) {
83 * to FUSE 2.6 API. */
87 " include <fuse.h> for correct reference")
94 /* librefuse once had a function fuse_mount() for FUSE 3.0 but without
99 " include <fuse.h> for correct reference")
101 fuse_mount(struct fuse *fuse, const char *mountpoint) {
102 return fuse_mount_v30(fuse, mountpoint);
105 /* librefuse once had a function fuse_new() for FUSE 3.0 but without a
110 " include <fuse.h> for correct reference")
111 struct fuse *
118 /* librefuse once had a function fuse_destroy() for FUSE 3.0 but
123 " include <fuse.h> for correct reference")
125 fuse_destroy(struct fuse *fuse) {
126 fuse_destroy_v30(fuse);
129 /* librefuse once had a function fuse_parse_cmdline() for FUSE 3.0 but
135 " include <fuse.h> for correct reference")
147 /* librefuse once had a function fuse_unmount() for FUSE 3.0 but
152 " include <fuse.h> for correct reference")
154 fuse_unmount(struct fuse* fuse) {
155 fuse_unmount_v30(fuse);