/io/ |
A D | tst-statx.c | 52 struct statx buf; in kernel_supports_statx() local 66 struct statx buf = { 0, }; in both_implementations_tests() local 68 TEST_COMPARE (buf.stx_size, 3); in both_implementations_tests() 69 ino = buf.stx_ino; in both_implementations_tests() 72 struct statx buf = { 0, }; in both_implementations_tests() local 74 TEST_COMPARE (buf.stx_size, 3); in both_implementations_tests() 75 TEST_COMPARE (buf.stx_ino, ino); in both_implementations_tests() 107 struct statx buf; in non_kernel_tests() local 132 struct statx buf; in do_test() local 133 buf.stx_size = 0; in do_test() [all …]
|
A D | getwd.c | 26 getwd (char *buf) in getwd() argument 33 if (buf == NULL) in getwd() 43 __strerror_r (errno, buf, 1024); in getwd() 50 return strcpy (buf, tmpbuf); in getwd()
|
A D | tst-ttyname_r.c | 28 char buf[sysconf (_SC_TTY_NAME_MAX) + 1]; in do_test() local 29 int res = ttyname_r (-1, buf, sizeof (buf)); in do_test() 35 res = ttyname_r (temp_fd, buf, sizeof (buf)); in do_test()
|
A D | stat.c | 21 __stat (const char *file, struct stat *buf) in __stat() argument 23 return __fstatat (AT_FDCWD, file, buf, 0); in __stat()
|
A D | lstat.c | 21 __lstat (const char *file, struct stat *buf) in __lstat() argument 23 return __fstatat (AT_FDCWD, file, buf, AT_SYMLINK_NOFOLLOW); in __lstat()
|
A D | stat64.c | 21 __stat64 (const char *file, struct stat64 *buf) in __stat64() argument 23 return __fstatat64 (AT_FDCWD, file, buf, 0); in __stat64()
|
A D | statx.c | 26 unsigned int mask, struct statx *buf) in statx() argument 28 return statx_generic (fd, path, flags, mask, buf); in statx()
|
A D | fstat.c | 22 __fstat (int fd, struct stat *buf) in __fstat() argument 29 return __fstatat (fd, "", buf, AT_EMPTY_PATH); in __fstat()
|
A D | lstat64.c | 21 __lstat64 (const char *file, struct stat64 *buf) in __lstat64() argument 23 return __fstatat64 (AT_FDCWD, file, buf, AT_SYMLINK_NOFOLLOW); in __lstat64()
|
A D | fstat64.c | 22 __fstat64 (int fd, struct stat64 *buf) in __fstat64() argument 29 return __fstatat64 (fd, "", buf, AT_EMPTY_PATH); in __fstat64()
|
A D | fstatat.c | 22 __fstatat (int fd, const char *file, struct stat *buf, int flag) in __fstatat() argument 29 if (buf == NULL || (flag & ~AT_SYMLINK_NOFOLLOW) != 0) in __fstatat()
|
A D | fstatat64.c | 22 __fstatat64 (int fd, const char *file, struct stat64 *buf, int flag) in __fstatat64() argument 29 if (buf == NULL || (flag & ~AT_SYMLINK_NOFOLLOW) != 0) in __fstatat64()
|
A D | read.c | 24 __libc_read (int fd, void *buf, size_t nbytes) in __libc_read() argument 33 if (buf == NULL) in __libc_read()
|
A D | write.c | 25 __libc_write (int fd, const void *buf, size_t nbytes) in __libc_write() argument 34 if (buf == NULL) in __libc_write()
|
A D | tst-readlinkat.c | 109 char buf[100]; in do_test() local 110 int n = readlinkat (dir_fd, "another-file", buf, sizeof (buf)); in do_test() 122 if (strncmp (buf, symlinkcontent, n) != 0) in do_test()
|
A D | statfs64.c | 23 __statfs64 (const char *file, struct statfs64 *buf) in __statfs64() argument
|
A D | statvfs64.c | 23 __statvfs64 (const char *file, struct statvfs64 *buf) in __statvfs64() argument
|
A D | fstatfs.c | 25 __fstatfs (int fd, struct statfs *buf) in __fstatfs() argument
|
A D | fstatfs64.c | 23 __fstatfs64 (int fd, struct statfs64 *buf) in __fstatfs64() argument
|
A D | fstatvfs64.c | 23 __fstatvfs64 (int fd, struct statvfs64 *buf) in __fstatvfs64() argument
|
A D | readlink.c | 25 __readlink (const char *path, char *buf, size_t len) in __readlink() argument
|
A D | statfs.c | 25 __statfs (const char *file, struct statfs *buf) in __statfs() argument
|
A D | statvfs.c | 25 __statvfs (const char *file, struct statvfs *buf) in __statvfs() argument
|
A D | ttyname_r.c | 25 __ttyname_r (int fd, char *buf, size_t buflen) in __ttyname_r() argument
|
A D | fstatvfs.c | 24 __fstatvfs (int fd, struct statvfs *buf) in __fstatvfs() argument
|