Home
last modified time | relevance | path

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

/dragonfly/contrib/libarchive/libarchive/
H A Darchive_write_disk_posix.c4151 char *xattr_names = NULL, *xattr_val = NULL; in copy_xattrs() local
4161 xattr_names = malloc(xattr_size); in copy_xattrs()
4162 if (xattr_names == NULL) { in copy_xattrs()
4168 xattr_size = flistxattr(tmpfd, xattr_names, xattr_size, 0); in copy_xattrs()
4176 xattr_i += strlen(xattr_names + xattr_i) + 1) { in copy_xattrs()
4181 s = fgetxattr(tmpfd, xattr_names + xattr_i, NULL, 0, 0, 0); in copy_xattrs()
4197 s = fgetxattr(tmpfd, xattr_names + xattr_i, xattr_val, s, 0, 0); in copy_xattrs()
4204 f = fsetxattr(dffd, xattr_names + xattr_i, xattr_val, s, 0, 0); in copy_xattrs()
4213 free(xattr_names); in copy_xattrs()