Searched refs:xattr_size (Results 1 - 1 of 1) sorted by last modified time

/freebsd-11-stable/contrib/libarchive/libarchive/
H A Darchive_write_disk_posix.c4088 ssize_t xattr_size; local
4092 xattr_size = flistxattr(tmpfd, NULL, 0, 0);
4093 if (xattr_size == -1) {
4099 xattr_names = malloc(xattr_size);
4106 xattr_size = flistxattr(tmpfd, xattr_names, xattr_size, 0);
4107 if (xattr_size == -1) {
4113 for (xattr_i = 0; xattr_i < xattr_size;

Completed in 130 milliseconds