| /src/lib/librefuse/refuse/ | 
| v34.h | 87 	/* copy_file_range appeared on FUSE 3.4. */ 88 	ssize_t	(*copy_file_range)	(const char *, struct fuse_file_info *, off_t, const char *, struct fuse_file_info *, off_t, size_t, int);  member in struct:fuse_operations_v34
 
 | 
| v35.h | 88 	ssize_t	(*copy_file_range)	(const char *, struct fuse_file_info *, off_t, const char *, struct fuse_file_info *, off_t, size_t, int);  member in struct:fuse_operations_v35 
 | 
| v38.h | 87 	ssize_t	(*copy_file_range)	(const char *, struct fuse_file_info *, off_t, const char *, struct fuse_file_info *, off_t, size_t, int);  member in struct:fuse_operations_v38 
 | 
| fs.c | 1703     /* copy_file_range() appeared on FUSE 3.4. */ 1716         if (((const struct __CONCAT(fuse_operations_v,VER)*)fs->op)->copy_file_range) \
 1717             return ((const struct __CONCAT(fuse_operations_v,VER)*)fs->op)->copy_file_range(path_in, fi_in, off_in, path_out, fi_out, off_out, len, flags); \
 
 |