Home
last modified time | relevance | path

Searched refs:statxbuf (Results 1 – 6 of 6) sorted by relevance

/third_party/libuv/src/unix/
Dfs.c1538 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 …]
Dlinux-syscalls.c249 struct uv__statx* statxbuf) { in uv__statx() argument
253 return syscall(__NR_statx, dirfd, path, flags, mask, statxbuf); in uv__statx()
Dlinux-syscalls.h75 struct uv__statx* statxbuf);
/third_party/ltp/include/lapi/
Dstat.h113 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/
Dc-test-tutorial-simple.txt391 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/
Dmod.rs1197 statxbuf: *mut statx, in statx()