Lines Matching refs:fi
77 struct fuse_file_info *fi)
79 (void) fi;
114 off_t offset, struct fuse_file_info *fi,
121 (void) fi;
222 struct fuse_file_info *fi)
224 (void) fi;
235 struct fuse_file_info *fi)
237 (void) fi;
248 struct fuse_file_info *fi)
252 if (fi != NULL)
253 res = ftruncate(fi->fh, size);
264 struct fuse_file_info *fi)
266 (void) fi;
279 struct fuse_file_info *fi)
283 res = open(path, fi->flags, mode);
287 fi->fh = res;
291 static int xmp_open(const char *path, struct fuse_file_info *fi)
295 res = open(path, fi->flags);
299 fi->fh = res;
304 struct fuse_file_info *fi)
309 if(fi == NULL)
312 fd = fi->fh;
321 if(fi == NULL)
327 off_t offset, struct fuse_file_info *fi)
332 (void) fi;
333 if(fi == NULL)
336 fd = fi->fh;
345 if(fi == NULL)
361 static int xmp_release(const char *path, struct fuse_file_info *fi)
364 close(fi->fh);
369 struct fuse_file_info *fi)
376 (void) fi;
382 off_t offset, off_t length, struct fuse_file_info *fi)
387 (void) fi;
392 if(fi == NULL)
395 fd = fi->fh;
402 if(fi == NULL)
487 static off_t xmp_lseek(const char *path, off_t off, int whence, struct fuse_file_info *fi)
492 if (fi == NULL)
495 fd = fi->fh;
504 if (fi == NULL)