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);
82 int result = setxattr(NULL, NULL, NULL, -1, -1);
83 if (result == 0) {
84 t_error("%s failed: result = %d\n", __func__, result);