Lines Matching defs:value
17 * 4. Create new attr whose value length is greater than XATTR_SIZE_MAX(65536)
19 * 5. Create new attr whose value length is zero,
21 * 6. Replace the attr value without XATTR_REPLACE flag being set,
23 * 7. Replace attr value with XATTR_REPLACE flag being set,
52 #define XATTR_TEST_VALUE "this is a test value"
63 char **value;
72 .value = &xattr_value,
79 .value = &xattr_value,
86 .value = &xattr_value,
91 { /* case 03, long value */
93 .value = &long_value,
98 { /* case 04, zero length value */
100 .value = &xattr_value,
107 .value = &xattr_value,
115 .value = &xattr_value,
123 .value = &xattr_value,
129 .value = &xattr_value,
140 SAFE_SETXATTR(FNAME, tc[i].key, tc[i].value, tc[i].size,
144 TEST(setxattr(FNAME, tc[i].key, *tc[i].value, tc[i].size, tc[i].flags));