Searched refs:statxbuf (Results 1 – 5 of 5) sorted by relevance
/third_party/libuv/src/unix/ |
D | fs.c | 1517 struct uv__statx statxbuf; in uv__fs_statx() local 1538 rc = uv__statx(dirfd, path, flags, mode, &statxbuf); in uv__fs_statx() 1561 buf->st_dev = makedev(statxbuf.stx_dev_major, statxbuf.stx_dev_minor); in uv__fs_statx() 1562 buf->st_mode = statxbuf.stx_mode; in uv__fs_statx() 1563 buf->st_nlink = statxbuf.stx_nlink; in uv__fs_statx() 1564 buf->st_uid = statxbuf.stx_uid; in uv__fs_statx() 1565 buf->st_gid = statxbuf.stx_gid; in uv__fs_statx() 1566 buf->st_rdev = makedev(statxbuf.stx_rdev_major, statxbuf.stx_rdev_minor); in uv__fs_statx() 1567 buf->st_ino = statxbuf.stx_ino; in uv__fs_statx() 1568 buf->st_size = statxbuf.stx_size; in uv__fs_statx() [all …]
|
D | linux-syscalls.c | 249 struct uv__statx* statxbuf) { in uv__statx() argument 253 return syscall(__NR_statx, dirfd, path, flags, mask, statxbuf); in uv__statx()
|
D | linux-syscalls.h | 75 struct uv__statx* statxbuf);
|
/third_party/ltp/include/lapi/ |
D | stat.h | 113 unsigned int mask, struct statx *statxbuf) in statx() argument 115 return tst_syscall(__NR_statx, dirfd, pathname, flags, mask, statxbuf); in statx()
|
/third_party/ltp/doc/ |
D | c-test-tutorial-simple.txt | 391 unsigned int mask, struct statx *statxbuf) 393 return tst_syscall(__NR_statx, dirfd, pathname, flags, mask, statxbuf); 442 struct statx statxbuf = { 0 }; 444 TEST(sys_statx(0, NULL, 0, 0, &statxbuf)); 567 struct statx statxbuf = { 0 }; 569 TEST(sys_statx(0, NULL, 0, 0, &statxbuf)); 577 TEST(sys_statx(AT_FDCWD, FNAME, 0, STATX_BASIC_STATS, &statxbuf)); 639 TEST(sys_statx(AT_FDCWD, LNAME, 0, STATX_BASIC_STATS, &statxbuf)); 715 struct statx statxbuf = { 0 }; 717 TEST(sys_statx(0, NULL, 0, 0, &statxbuf)); [all …]
|