23 #include <sys/types.h>    25 #include <sys/statvfs.h>    83                                 const struct stat *stbuf, off_t off,
   253         double ac_attr_timeout;
   321         int (*readlink) (
const char *, 
char *, size_t);
   329         int (*mknod) (
const char *, mode_t, dev_t);
   337         int (*mkdir) (
const char *, mode_t);
   340         int (*unlink) (
const char *);
   343         int (*rmdir) (
const char *);
   346         int (*symlink) (
const char *, 
const char *);
   357         int (*rename) (
const char *, 
const char *, 
unsigned int flags);
   360         int (*link) (
const char *, 
const char *);
   448         int (*read) (
const char *, 
char *, size_t, off_t,
   460         int (*write) (
const char *, 
const char *, size_t, off_t,
   467         int (*statfs) (
const char *, 
struct statvfs *);
   514         int (*setxattr) (
const char *, 
const char *, 
const char *, size_t, int);
   517         int (*getxattr) (
const char *, 
const char *, 
char *, size_t);
   520         int (*listxattr) (
const char *, 
char *, size_t);
   523         int (*removexattr) (
const char *, 
const char *);
   580         void (*destroy) (
void *private_data);
   591         int (*access) (
const char *, int);
   650          int (*utimens) (
const char *, 
const struct timespec tv[2],
   659         int (*bmap) (
const char *, 
size_t blocksize, uint64_t *idx);
   674         int (*ioctl) (
const char *, 
int cmd, 
void *arg,
   693                      struct fuse_pollhandle *ph, 
unsigned *reventsp);
   751         int (*fallocate) (
const char *, int, off_t, off_t,
   765         ssize_t (*copy_file_range) (
const char *path_in,
   767                                     off_t offset_in, 
const char *path_out,
   769                                     off_t offset_out, 
size_t size, 
int flags);
   855 #define fuse_main(argc, argv, op, private_data)                         \   856         fuse_main_real(argc, argv, op, sizeof(*(op)), private_data)   902 #if FUSE_USE_VERSION == 30   904                          size_t op_size, 
void *private_data);
   905 #define fuse_new(args, op, size, data) fuse_new_30(args, op, size, data)   908                       size_t op_size, 
void *private_data);
   919 int fuse_mount(
struct fuse *f, 
const char *mountpoint);
   998 #if FUSE_USE_VERSION < 32  1000 #define fuse_loop_mt(f, clone_fd) fuse_loop_mt_31(f, clone_fd)  1111 int fuse_fs_getattr(
struct fuse_fs *fs, 
const char *path, 
struct stat *buf,
  1113 int fuse_fs_rename(
struct fuse_fs *fs, 
const char *oldpath,
  1114                    const char *newpath, 
unsigned int flags);
  1115 int fuse_fs_unlink(
struct fuse_fs *fs, 
const char *path);
  1116 int fuse_fs_rmdir(
struct fuse_fs *fs, 
const char *path);
  1117 int fuse_fs_symlink(
struct fuse_fs *fs, 
const char *linkname,
  1119 int fuse_fs_link(
struct fuse_fs *fs, 
const char *oldpath, 
const char *newpath);
  1120 int fuse_fs_release(
struct fuse_fs *fs,  
const char *path,
  1122 int fuse_fs_open(
struct fuse_fs *fs, 
const char *path,
  1124 int fuse_fs_read(
struct fuse_fs *fs, 
const char *path, 
char *buf, 
size_t size,
  1126 int fuse_fs_read_buf(
struct fuse_fs *fs, 
const char *path,
  1127                      struct fuse_bufvec **bufp, 
size_t size, off_t off,
  1129 int fuse_fs_write(
struct fuse_fs *fs, 
const char *path, 
const char *buf,
  1131 int fuse_fs_write_buf(
struct fuse_fs *fs, 
const char *path,
  1134 int fuse_fs_fsync(
struct fuse_fs *fs, 
const char *path, 
int datasync,
  1136 int fuse_fs_flush(
struct fuse_fs *fs, 
const char *path,
  1138 int fuse_fs_statfs(
struct fuse_fs *fs, 
const char *path, 
struct statvfs *buf);
  1139 int fuse_fs_opendir(
struct fuse_fs *fs, 
const char *path,
  1141 int fuse_fs_readdir(
struct fuse_fs *fs, 
const char *path, 
void *buf,
  1144 int fuse_fs_fsyncdir(
struct fuse_fs *fs, 
const char *path, 
int datasync,
  1146 int fuse_fs_releasedir(
struct fuse_fs *fs, 
const char *path,
  1148 int fuse_fs_create(
struct fuse_fs *fs, 
const char *path, mode_t mode,
  1150 int fuse_fs_lock(
struct fuse_fs *fs, 
const char *path,
  1152 int fuse_fs_flock(
struct fuse_fs *fs, 
const char *path,
  1154 int fuse_fs_chmod(
struct fuse_fs *fs, 
const char *path, mode_t mode,
  1156 int fuse_fs_chown(
struct fuse_fs *fs, 
const char *path, uid_t uid, gid_t gid,
  1158 int fuse_fs_truncate(
struct fuse_fs *fs, 
const char *path, off_t size,
  1160 int fuse_fs_utimens(
struct fuse_fs *fs, 
const char *path,
  1162 int fuse_fs_access(
struct fuse_fs *fs, 
const char *path, 
int mask);
  1163 int fuse_fs_readlink(
struct fuse_fs *fs, 
const char *path, 
char *buf,
  1165 int fuse_fs_mknod(
struct fuse_fs *fs, 
const char *path, mode_t mode,
  1167 int fuse_fs_mkdir(
struct fuse_fs *fs, 
const char *path, mode_t mode);
  1168 int fuse_fs_setxattr(
struct fuse_fs *fs, 
const char *path, 
const char *name,
  1169                      const char *value, 
size_t size, 
int flags);
  1170 int fuse_fs_getxattr(
struct fuse_fs *fs, 
const char *path, 
const char *name,
  1171                      char *value, 
size_t size);
  1172 int fuse_fs_listxattr(
struct fuse_fs *fs, 
const char *path, 
char *list,
  1174 int fuse_fs_removexattr(
struct fuse_fs *fs, 
const char *path,
  1176 int fuse_fs_bmap(
struct fuse_fs *fs, 
const char *path, 
size_t blocksize,
  1178 int fuse_fs_ioctl(
struct fuse_fs *fs, 
const char *path, 
int cmd, 
void *arg,
  1180 int fuse_fs_poll(
struct fuse_fs *fs, 
const char *path,
  1182                  unsigned *reventsp);
  1183 int fuse_fs_fallocate(
struct fuse_fs *fs, 
const char *path, 
int mode,
  1185 ssize_t fuse_fs_copy_file_range(
struct fuse_fs *fs, 
const char *path_in,
  1187                                 const char *path_out,
  1189                                 size_t len, 
int flags);
  1190 void fuse_fs_init(
struct fuse_fs *fs, 
struct fuse_conn_info *conn,
  1192 void fuse_fs_destroy(
struct fuse_fs *fs);
  1194 int fuse_notify_poll(
struct fuse_pollhandle *ph);
  1210                             void *private_data);
  1226 typedef struct fuse_fs *(*fuse_module_factory_t)(
struct fuse_args *args,
  1227                                                  struct fuse_fs *fs[]);
  1238 #define FUSE_REGISTER_MODULE(name_, factory_) \  1239         fuse_module_factory_t fuse_module_ ## name_ ## _factory = factory_ 
void fuse_stop_cleanup_thread(struct fuse *fuse)
int fuse_loop(struct fuse *f)
struct fuse * fuse_new(struct fuse_args *args, const struct fuse_operations *op, size_t op_size, void *private_data)
int fuse_clean_cache(struct fuse *fuse)
void fuse_destroy(struct fuse *f)
int fuse_open_channel(const char *mountpoint, const char *options)
struct fuse_session * fuse_get_session(struct fuse *f)
int fuse_main_real(int argc, char *argv[], const struct fuse_operations *op, size_t op_size, void *private_data)
int fuse_invalidate_path(struct fuse *f, const char *path)
struct fuse_fs * fuse_fs_new(const struct fuse_operations *op, size_t op_size, void *private_data)
int fuse_start_cleanup_thread(struct fuse *fuse)
void fuse_lib_help(struct fuse_args *args)
int fuse_interrupted(void)
int(* fuse_fill_dir_t)(void *buf, const char *name, const struct stat *stbuf, off_t off, enum fuse_fill_dir_flags flags)
int fuse_getgroups(int size, gid_t list[])
int fuse_mount(struct fuse *f, const char *mountpoint)
void fuse_unmount(struct fuse *f)
int fuse_loop_mt_31(struct fuse *f, int clone_fd)
struct fuse_context * fuse_get_context(void)
void fuse_exit(struct fuse *f)