Searched refs:statxbuf (Results 1 – 6 of 6) sorted by relevance
/third_party/libuv/src/unix/ |
D | fs.c | 1538 struct uv__statx statxbuf; in uv__fs_statx() local 1559 rc = uv__statx(dirfd, path, flags, mode, &statxbuf); in uv__fs_statx() 1582 buf->st_dev = makedev(statxbuf.stx_dev_major, statxbuf.stx_dev_minor); in uv__fs_statx() 1583 buf->st_mode = statxbuf.stx_mode; in uv__fs_statx() 1584 buf->st_nlink = statxbuf.stx_nlink; in uv__fs_statx() 1585 buf->st_uid = statxbuf.stx_uid; in uv__fs_statx() 1586 buf->st_gid = statxbuf.stx_gid; in uv__fs_statx() 1587 buf->st_rdev = makedev(statxbuf.stx_rdev_major, statxbuf.stx_rdev_minor); in uv__fs_statx() 1588 buf->st_ino = statxbuf.stx_ino; in uv__fs_statx() 1589 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 …]
|
/third_party/rust/crates/libc/src/unix/linux_like/linux/gnu/ |
D | mod.rs | 1197 statxbuf: *mut statx, in statx()
|