Lines Matching defs:crtstat
216 static inline void copy_stat(struct _stat64 *crtstat, struct win32_stat *buf)
218 buf->st_dev = crtstat->st_dev;
219 buf->st_ino = crtstat->st_ino;
220 buf->st_mode = crtstat->st_mode;
221 buf->st_nlink = crtstat->st_nlink;
222 buf->st_uid = crtstat->st_uid;
223 buf->st_gid = crtstat->st_gid;
224 buf->st_rdev = crtstat->st_rdev;
225 buf->st_size = crtstat->st_size;
226 buf->st_atime = crtstat->st_atime;
227 buf->st_mtime = crtstat->st_mtime;
228 buf->st_ctime = crtstat->st_ctime;
233 struct _stat64 crtstat = { 0 };
241 ret = _wstat64(filename_w, &crtstat);
244 ret = _stat64(filename_utf8, &crtstat);
246 copy_stat(&crtstat, buf);
253 struct _stat64 crtstat = { 0 };
256 ret = _fstat64(fd, &crtstat);
258 copy_stat(&crtstat, buf);