Lines Matching defs:size
100 static int xmp_readlink(const char *path, char *buf, size_t size)
104 res = readlink(path, buf, size - 1);
247 static int xmp_truncate(const char *path, off_t size,
253 res = ftruncate(fi->fh, size);
255 res = truncate(path, size);
303 static int xmp_read(const char *path, char *buf, size_t size, off_t offset,
317 res = pread(fd, buf, size, offset);
326 static int xmp_write(const char *path, const char *buf, size_t size,
341 res = pwrite(fd, buf, size, offset);
411 size_t size, int flags)
413 int res = lsetxattr(path, name, value, size, flags);
420 size_t size)
422 int res = lgetxattr(path, name, value, size);
428 static int xmp_listxattr(const char *path, char *list, size_t size)
430 int res = llistxattr(path, list, size);