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

/freebsd-current/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-current/sys/contrib/openzfs/module/os/linux/zfs/
H A Dzpl_xattr.c1236 size_t xattr_size = sizeof (XATTR_NAME_POSIX_ACL_ACCESS); local
1241 if (list && xattr_size <= list_size)
1242 memcpy(list, xattr_name, xattr_size);
1244 return (xattr_size);
1253 size_t xattr_size = sizeof (XATTR_NAME_POSIX_ACL_DEFAULT); local
1258 if (list && xattr_size <= list_size)
1259 memcpy(list, xattr_name, xattr_size);
1261 return (xattr_size);
/freebsd-current/contrib/libarchive/libarchive/
H A Darchive_write_disk_posix.c4172 ssize_t xattr_size; local
4176 xattr_size = flistxattr(tmpfd, NULL, 0, 0);
4177 if (xattr_size == -1) {
4183 xattr_names = malloc(xattr_size);
4190 xattr_size = flistxattr(tmpfd, xattr_names, xattr_size, 0);
4191 if (xattr_size == -1) {
4197 for (xattr_i = 0; xattr_i < xattr_size;

Completed in 168 milliseconds