Lines Matching refs:statxbuf
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()
1590 buf->st_blksize = statxbuf.stx_blksize; in uv__fs_statx()
1591 buf->st_blocks = statxbuf.stx_blocks; in uv__fs_statx()
1592 buf->st_atim.tv_sec = statxbuf.stx_atime.tv_sec; in uv__fs_statx()
1593 buf->st_atim.tv_nsec = statxbuf.stx_atime.tv_nsec; in uv__fs_statx()
1594 buf->st_mtim.tv_sec = statxbuf.stx_mtime.tv_sec; in uv__fs_statx()
1595 buf->st_mtim.tv_nsec = statxbuf.stx_mtime.tv_nsec; in uv__fs_statx()
1596 buf->st_ctim.tv_sec = statxbuf.stx_ctime.tv_sec; in uv__fs_statx()
1597 buf->st_ctim.tv_nsec = statxbuf.stx_ctime.tv_nsec; in uv__fs_statx()
1598 buf->st_birthtim.tv_sec = statxbuf.stx_btime.tv_sec; in uv__fs_statx()
1599 buf->st_birthtim.tv_nsec = statxbuf.stx_btime.tv_nsec; in uv__fs_statx()