Home
last modified time | relevance | path

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

/third_party/node/deps/uv/src/unix/
Dfs.c1518 struct uv__statx statxbuf; in uv__fs_statx() local
1539 rc = uv__statx(dirfd, path, flags, mode, &statxbuf); in uv__fs_statx()
1562 buf->st_dev = makedev(statxbuf.stx_dev_major, statxbuf.stx_dev_minor); in uv__fs_statx()
1563 buf->st_mode = statxbuf.stx_mode; in uv__fs_statx()
1564 buf->st_nlink = statxbuf.stx_nlink; in uv__fs_statx()
1565 buf->st_uid = statxbuf.stx_uid; in uv__fs_statx()
1566 buf->st_gid = statxbuf.stx_gid; in uv__fs_statx()
1567 buf->st_rdev = makedev(statxbuf.stx_rdev_major, statxbuf.stx_rdev_minor); in uv__fs_statx()
1568 buf->st_ino = statxbuf.stx_ino; in uv__fs_statx()
1569 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/libuv/src/unix/
Dfs.c1539 struct uv__statx statxbuf; in uv__fs_statx() local
1560 rc = uv__statx(dirfd, path, flags, mode, &statxbuf); in uv__fs_statx()
1583 buf->st_dev = makedev(statxbuf.stx_dev_major, statxbuf.stx_dev_minor); in uv__fs_statx()
1584 buf->st_mode = statxbuf.stx_mode; in uv__fs_statx()
1585 buf->st_nlink = statxbuf.stx_nlink; in uv__fs_statx()
1586 buf->st_uid = statxbuf.stx_uid; in uv__fs_statx()
1587 buf->st_gid = statxbuf.stx_gid; in uv__fs_statx()
1588 buf->st_rdev = makedev(statxbuf.stx_rdev_major, statxbuf.stx_rdev_minor); in uv__fs_statx()
1589 buf->st_ino = statxbuf.stx_ino; in uv__fs_statx()
1590 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.h111 unsigned int mask, struct statx *statxbuf) in statx() argument
113 return tst_syscall(__NR_statx, dirfd, pathname, flags, mask, statxbuf); in statx()
/third_party/ltp/doc/
DC-Test-Case-Tutorial.asciidoc392 unsigned int mask, struct statx *statxbuf)
394 return tst_syscall(__NR_statx, dirfd, pathname, flags, mask, statxbuf);
443 struct statx statxbuf = { 0 };
445 TEST(sys_statx(0, NULL, 0, 0, &statxbuf));
568 struct statx statxbuf = { 0 };
570 TEST(sys_statx(0, NULL, 0, 0, &statxbuf));
578 TEST(sys_statx(AT_FDCWD, FNAME, 0, STATX_BASIC_STATS, &statxbuf));
640 TEST(sys_statx(AT_FDCWD, LNAME, 0, STATX_BASIC_STATS, &statxbuf));
716 struct statx statxbuf = { 0 };
718 TEST(sys_statx(0, NULL, 0, 0, &statxbuf));
[all …]
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()