Searched refs:statxbuf (Results 1 - 8 of 8) sorted by relevance
/third_party/libuv/src/unix/ |
H A D | linux.c | 425 struct uv__statx* statxbuf) { in uv__statx() 431 rc = syscall(__NR_statx, dirfd, path, flags, mask, statxbuf); in uv__statx() 433 uv__msan_unpoison(statxbuf, sizeof(*statxbuf)); in uv__statx() 1084 struct uv__statx* statxbuf; in uv__iou_fs_statx() local 1087 statxbuf = uv__malloc(sizeof(*statxbuf)); in uv__iou_fs_statx() 1088 if (statxbuf == NULL) in uv__iou_fs_statx() 1095 uv__free(statxbuf); in uv__iou_fs_statx() 1099 req->ptr = statxbuf; in uv__iou_fs_statx() 421 uv__statx(int dirfd, const char* path, int flags, unsigned int mask, struct uv__statx* statxbuf) uv__statx() argument 1122 uv__statx_to_stat(const struct uv__statx* statxbuf, uv_stat_t* buf) uv__statx_to_stat() argument 1147 struct uv__statx* statxbuf; uv__iou_fs_statx_post() local [all...] |
H A D | internal.h | 449 struct uv__statx* statxbuf); 450 void uv__statx_to_stat(const struct uv__statx* statxbuf, uv_stat_t* buf);
|
H A D | fs.c | 1407 struct uv__statx statxbuf; in uv__fs_statx() local 1428 rc = uv__statx(dirfd, path, flags, mode, &statxbuf); in uv__fs_statx() 1451 uv__statx_to_stat(&statxbuf, buf); in uv__fs_statx()
|
/third_party/node/deps/uv/src/unix/ |
H A D | fs.c | 1518 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 in uv__fs_statx() [all...] |
H A D | linux-syscalls.c | 249 struct uv__statx* statxbuf) { in uv__statx() 253 return syscall(__NR_statx, dirfd, path, flags, mask, statxbuf); in uv__statx() 245 uv__statx(int dirfd, const char* path, int flags, unsigned int mask, struct uv__statx* statxbuf) uv__statx() argument
|
H A D | linux-syscalls.h | 75 struct uv__statx* statxbuf);
|
/third_party/ltp/include/lapi/ |
H A D | stat.h | 111 unsigned int mask, struct statx *statxbuf) in statx() 113 return tst_syscall(__NR_statx, dirfd, pathname, flags, mask, statxbuf); in statx() 110 statx(int dirfd, const char *pathname, unsigned int flags, unsigned int mask, struct statx *statxbuf) statx() argument
|
/third_party/rust/crates/libc/src/unix/linux_like/linux/gnu/ |
H A D | mod.rs | 1197 statxbuf: *mut statx, in statx()
|
Completed in 12 milliseconds