Home
last modified time | relevance | path

Searched refs:getxattr_at_malloc (Results 1 – 3 of 3) sorted by relevance

/systemd-251/src/test/
Dtest-xattr-util.c18 TEST(getxattr_at_malloc) { in TEST() argument
37 assert_se(getxattr_at_malloc(fd, "test", "user.foo", 0, &value) == 3); in TEST()
41 assert_se(getxattr_at_malloc(AT_FDCWD, x, "user.foo", 0, &value) == 3); in TEST()
48 r = getxattr_at_malloc(fd, "usr", "user.idontexist", 0, &value); in TEST()
54 assert_se(getxattr_at_malloc(fd, NULL, "user.foo", 0, &value) == 3); in TEST()
/systemd-251/src/basic/
Dxattr-util.h10 int getxattr_at_malloc(int fd, const char *path, const char *name, int flags, char **ret);
12 return getxattr_at_malloc(AT_FDCWD, path, name, AT_SYMLINK_FOLLOW, ret); in getxattr_malloc()
15 return getxattr_at_malloc(AT_FDCWD, path, name, 0, ret); in lgetxattr_malloc()
18 return getxattr_at_malloc(fd, NULL, name, AT_EMPTY_PATH, ret); in fgetxattr_malloc()
Dxattr-util.c22 int getxattr_at_malloc( in getxattr_at_malloc() function
173 r = getxattr_at_malloc(fd, path, "user.crtime_usec", flags, (char**) &le); in fd_getcrtime_at()