Lines Matching defs:value
18 * 4. Create new attr whose value length is greater than XATTR_SIZE_MAX(65536)
20 * 5. Create new attr whose value length is zero,
22 * 6. Replace the attr value without XATTR_REPLACE flag being set,
24 * 7. Replace attr value with XATTR_REPLACE flag being set,
53 #define XATTR_TEST_VALUE "this is a test value"
65 char **value;
75 .value = &xattr_value,
82 .value = &xattr_value,
89 .value = &xattr_value,
94 { /* case 03, long value */
96 .value = &long_value,
101 { /* case 04, zero length value */
103 .value = &xattr_value,
110 .value = &xattr_value,
118 .value = &xattr_value,
126 .value = &xattr_value,
132 .value = &xattr_value,
143 SAFE_FSETXATTR(fd, tc[i].key, tc[i].value, tc[i].size,
147 TEST(fsetxattr(fd, tc[i].key, *tc[i].value, tc[i].size, tc[i].flags));