Lines Matching defs:buf
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;
231 static inline int win32_stat(const char *filename_utf8, struct win32_stat *buf)
246 copy_stat(&crtstat, buf);
251 static inline int win32_fstat(int fd, struct win32_stat *buf)
258 copy_stat(&crtstat, buf);