Lines Matching defs:size
99 static int xmp_readlink(const char *path, char *buf, size_t size)
103 res = readlink(path, buf, size - 1);
326 static int xmp_truncate(const char *path, off_t size,
332 res = ftruncate(fi->fh, size);
334 res = truncate(path, size);
384 static int xmp_read(const char *path, char *buf, size_t size, off_t offset,
390 res = pread(fi->fh, buf, size, offset);
398 size_t size, off_t offset, struct fuse_file_info *fi)
408 *src = FUSE_BUFVEC_INIT(size);
419 static int xmp_write(const char *path, const char *buf, size_t size,
425 res = pwrite(fi->fh, buf, size, offset);
518 size_t size, int flags)
520 int res = lsetxattr(path, name, value, size, flags);
527 size_t size)
529 int res = lgetxattr(path, name, value, size);
535 static int xmp_listxattr(const char *path, char *list, size_t size)
537 int res = llistxattr(path, list, size);