Searched refs:xattr_size (Results 1 - 4 of 4) sorted by relevance

/freebsd-13-stable/sys/contrib/openzfs/tests/zfs-tests/tests/functional/features/large_dnode/
H A Dlarge_dnode_006_pos.ksh66 xattr_size=${xattr_sizes[$i]}
69 log_must xattrtest -R -y -s $xattr_size -f 1024 -p $dir
H A Dlarge_dnode_002_pos.ksh69 xattr_size=${xattr_sizes[$i]}
71 xattr_val=$(dd if=/dev/urandom bs=1 count=$xattr_size |
/freebsd-13-stable/sys/contrib/openzfs/module/os/linux/zfs/
H A Dzpl_xattr.c1148 size_t xattr_size = sizeof (XATTR_NAME_POSIX_ACL_ACCESS); local
1153 if (list && xattr_size <= list_size)
1154 memcpy(list, xattr_name, xattr_size);
1156 return (xattr_size);
1165 size_t xattr_size = sizeof (XATTR_NAME_POSIX_ACL_DEFAULT); local
1170 if (list && xattr_size <= list_size)
1171 memcpy(list, xattr_name, xattr_size);
1173 return (xattr_size);
/freebsd-13-stable/contrib/libarchive/libarchive/
H A Darchive_write_disk_posix.c4013 ssize_t xattr_size; local
4017 xattr_size = flistxattr(tmpfd, NULL, 0, 0);
4018 if (xattr_size == -1) {
4024 xattr_names = malloc(xattr_size);
4031 xattr_size = flistxattr(tmpfd, xattr_names, xattr_size, 0);
4032 if (xattr_size == -1) {
4038 for (xattr_i = 0; xattr_i < xattr_size;

Completed in 111 milliseconds