Lines Matching refs:path
268 * following operations will not receive path information:
273 * operations the path will be provided only if the struct
322 * Almost all operations take a path which can be of any length.
594 * path parameter will be NULL.
601 * path parameter will be NULL.
979 * @param mountpoint the mount point path
1116 * Invalidates cache for the given path.
1122 * no entry to be invalidated, e.g., because the path has not
1126 int fuse_invalidate_path(struct fuse *f, const char *path);
1184 int fuse_fs_getattr(struct fuse_fs *fs, const char *path, struct stat *buf,
1188 int fuse_fs_unlink(struct fuse_fs *fs, const char *path);
1189 int fuse_fs_rmdir(struct fuse_fs *fs, const char *path);
1191 const char *path);
1193 int fuse_fs_release(struct fuse_fs *fs, const char *path,
1195 int fuse_fs_open(struct fuse_fs *fs, const char *path,
1197 int fuse_fs_read(struct fuse_fs *fs, const char *path, char *buf, size_t size,
1199 int fuse_fs_read_buf(struct fuse_fs *fs, const char *path,
1202 int fuse_fs_write(struct fuse_fs *fs, const char *path, const char *buf,
1204 int fuse_fs_write_buf(struct fuse_fs *fs, const char *path,
1207 int fuse_fs_fsync(struct fuse_fs *fs, const char *path, int datasync,
1209 int fuse_fs_flush(struct fuse_fs *fs, const char *path,
1211 int fuse_fs_statfs(struct fuse_fs *fs, const char *path, struct statvfs *buf);
1212 int fuse_fs_opendir(struct fuse_fs *fs, const char *path,
1214 int fuse_fs_readdir(struct fuse_fs *fs, const char *path, void *buf,
1217 int fuse_fs_fsyncdir(struct fuse_fs *fs, const char *path, int datasync,
1219 int fuse_fs_releasedir(struct fuse_fs *fs, const char *path,
1221 int fuse_fs_create(struct fuse_fs *fs, const char *path, mode_t mode,
1223 int fuse_fs_lock(struct fuse_fs *fs, const char *path,
1225 int fuse_fs_flock(struct fuse_fs *fs, const char *path,
1227 int fuse_fs_chmod(struct fuse_fs *fs, const char *path, mode_t mode,
1229 int fuse_fs_chown(struct fuse_fs *fs, const char *path, uid_t uid, gid_t gid,
1231 int fuse_fs_truncate(struct fuse_fs *fs, const char *path, off_t size,
1233 int fuse_fs_utimens(struct fuse_fs *fs, const char *path,
1235 int fuse_fs_access(struct fuse_fs *fs, const char *path, int mask);
1236 int fuse_fs_readlink(struct fuse_fs *fs, const char *path, char *buf,
1238 int fuse_fs_mknod(struct fuse_fs *fs, const char *path, mode_t mode,
1240 int fuse_fs_mkdir(struct fuse_fs *fs, const char *path, mode_t mode);
1241 int fuse_fs_setxattr(struct fuse_fs *fs, const char *path, const char *name,
1243 int fuse_fs_getxattr(struct fuse_fs *fs, const char *path, const char *name,
1245 int fuse_fs_listxattr(struct fuse_fs *fs, const char *path, char *list,
1247 int fuse_fs_removexattr(struct fuse_fs *fs, const char *path,
1249 int fuse_fs_bmap(struct fuse_fs *fs, const char *path, size_t blocksize,
1252 int fuse_fs_ioctl(struct fuse_fs *fs, const char *path, int cmd,
1256 int fuse_fs_ioctl(struct fuse_fs *fs, const char *path, unsigned int cmd,
1260 int fuse_fs_poll(struct fuse_fs *fs, const char *path,
1263 int fuse_fs_fallocate(struct fuse_fs *fs, const char *path, int mode,
1270 off_t fuse_fs_lseek(struct fuse_fs *fs, const char *path, off_t off, int whence,