Lines Matching defs:statbuf
74 struct stat *__restrict statbuf) {
75 // We make a statx syscall and copy out the result into the |statbuf|.
82 statbuf->st_dev = MKDEV(xbuf.stx_dev_major, xbuf.stx_dev_minor);
83 statbuf->st_ino = static_cast<decltype(statbuf->st_ino)>(xbuf.stx_ino);
84 statbuf->st_mode = xbuf.stx_mode;
85 statbuf->st_nlink = xbuf.stx_nlink;
86 statbuf->st_uid = xbuf.stx_uid;
87 statbuf->st_gid = xbuf.stx_gid;
88 statbuf->st_rdev = MKDEV(xbuf.stx_rdev_major, xbuf.stx_rdev_minor);
89 statbuf->st_size = xbuf.stx_size;
90 statbuf->st_atim.tv_sec = xbuf.stx_atime.tv_sec;
91 statbuf->st_atim.tv_nsec = xbuf.stx_atime.tv_nsec;
92 statbuf->st_mtim.tv_sec = xbuf.stx_mtime.tv_sec;
93 statbuf->st_mtim.tv_nsec = xbuf.stx_mtime.tv_nsec;
94 statbuf->st_ctim.tv_sec = xbuf.stx_ctime.tv_sec;
95 statbuf->st_ctim.tv_nsec = xbuf.stx_ctime.tv_nsec;
96 statbuf->st_blksize = xbuf.stx_blksize;
97 statbuf->st_blocks =
98 static_cast<decltype(statbuf->st_blocks)>(xbuf.stx_blocks);