Lines Matching defs:result
46 int result = setxattr(path, name, value, strlen(value), XATTR_CREATE);
47 if (result != 0) {
48 t_error("%s failed: result = %d\n", __func__, result);
58 result = getxattr(path, name, buf, sizeof(buf));
59 if (result < 0) {
60 t_error("%s failed: result = %d\n", __func__, result);
72 result = removexattr(path, name);
73 if (result != 0) {
74 t_error("%s failed: result = %d\n", __func__, result);
78 result = getxattr(path, name, buf, sizeof(buf));
79 if (result != -1) {
80 t_error("%s failed: result = %d\n", __func__, result);
98 int result = removexattr(NULL, NULL);
99 if (result == 0) {
100 t_error("%s failed: result = %d\n", __func__, result);