Lines Matching refs:statxbuf
1518 struct uv__statx statxbuf;
1539 rc = uv__statx(dirfd, path, flags, mode, &statxbuf);
1562 buf->st_dev = makedev(statxbuf.stx_dev_major, statxbuf.stx_dev_minor);
1563 buf->st_mode = statxbuf.stx_mode;
1564 buf->st_nlink = statxbuf.stx_nlink;
1565 buf->st_uid = statxbuf.stx_uid;
1566 buf->st_gid = statxbuf.stx_gid;
1567 buf->st_rdev = makedev(statxbuf.stx_rdev_major, statxbuf.stx_rdev_minor);
1568 buf->st_ino = statxbuf.stx_ino;
1569 buf->st_size = statxbuf.stx_size;
1570 buf->st_blksize = statxbuf.stx_blksize;
1571 buf->st_blocks = statxbuf.stx_blocks;
1572 buf->st_atim.tv_sec = statxbuf.stx_atime.tv_sec;
1573 buf->st_atim.tv_nsec = statxbuf.stx_atime.tv_nsec;
1574 buf->st_mtim.tv_sec = statxbuf.stx_mtime.tv_sec;
1575 buf->st_mtim.tv_nsec = statxbuf.stx_mtime.tv_nsec;
1576 buf->st_ctim.tv_sec = statxbuf.stx_ctime.tv_sec;
1577 buf->st_ctim.tv_nsec = statxbuf.stx_ctime.tv_nsec;
1578 buf->st_birthtim.tv_sec = statxbuf.stx_btime.tv_sec;
1579 buf->st_birthtim.tv_nsec = statxbuf.stx_btime.tv_nsec;