Lines Matching defs:off
808 off_t off, struct fuse_file_info *fi)
812 return fs->op.read(path, buf, size, off, fi);
818 size_t size, off_t off, struct fuse_file_info *fi)
822 return fs->op.write(path, buf, size, off, fi);
880 fuse_fill_dir_t filler, off_t off,
885 return fs->op.readdir(path, buf, filler, off, fi);
1930 off_t off, struct fuse_file_info *fi)
1951 (unsigned long long) off);
1954 res = fuse_fs_read(f->fs, path, buf, size, off, fi);
1974 size_t size, off_t off, struct fuse_file_info *fi)
1988 (unsigned long) size, (unsigned long long) off);
1991 res = fuse_fs_write(f->fs, path, buf, size, off, fi);
2128 off_t off)
2153 if (off) {
2160 &stbuf, off);
2176 size_t size, off_t off, struct fuse_dh *dh,
2192 err = fuse_fs_readdir(f->fs, path, dh, fill_dir, off, fi);
2206 off_t off, struct fuse_file_info *llfi)
2215 if (!off)
2219 int err = readdir_fill(f, req, ino, size, off, dh, &fi);
2226 if ((off >= 0) && (off < dh->len)) {
2227 if (off + size > dh->len)
2228 size = dh->len - off;
2233 off = 0;
2235 fuse_reply_buf(req, dh->contents + off, size);
2910 " -o [no]auto_cache enable caching based on modification times (off)\n"