Lines Matching refs:size
128 static int iconv_readlink(const char *path, char *buf, size_t size)
134 err = fuse_fs_readlink(ic->next, newpath, buf, size);
139 strncpy(buf, newlink, size - 1);
140 buf[size - 1] = '\0';
331 static int iconv_truncate(const char *path, off_t size,
338 err = fuse_fs_truncate(ic->next, newpath, size, fi);
383 size_t size, off_t offset, struct fuse_file_info *fi)
389 err = fuse_fs_read_buf(ic->next, newpath, bufp, size, offset, fi);
471 const char *value, size_t size, int flags)
477 err = fuse_fs_setxattr(ic->next, newpath, name, value, size,
485 size_t size)
491 err = fuse_fs_getxattr(ic->next, newpath, name, value, size);
497 static int iconv_listxattr(const char *path, char *list, size_t size)
503 err = fuse_fs_listxattr(ic->next, newpath, list, size);