Home
last modified time | relevance | path

Searched refs:xattr_names (Results 1 – 1 of 1) sorted by relevance

/freebsd/contrib/libarchive/libarchive/
H A Darchive_write_disk_posix.c4173 char *xattr_names = NULL, *xattr_val = NULL; in copy_xattrs() local
4183 xattr_names = malloc(xattr_size); in copy_xattrs()
4184 if (xattr_names == NULL) { in copy_xattrs()
4190 xattr_size = flistxattr(tmpfd, xattr_names, xattr_size, 0); in copy_xattrs()
4198 xattr_i += strlen(xattr_names + xattr_i) + 1) { in copy_xattrs()
4203 s = fgetxattr(tmpfd, xattr_names + xattr_i, NULL, 0, 0, 0); in copy_xattrs()
4219 s = fgetxattr(tmpfd, xattr_names + xattr_i, xattr_val, s, 0, 0); in copy_xattrs()
4226 f = fsetxattr(dffd, xattr_names + xattr_i, xattr_val, s, 0, 0); in copy_xattrs()
4235 free(xattr_names); in copy_xattrs()