Lines Matching defs:user32_stat64
341 struct user32_stat64 { struct
342 dev_t st_dev; /* [XSI] ID of device containing file */
343 mode_t st_mode; /* [XSI] Mode of file (see below) */
344 nlink_t st_nlink; /* [XSI] Number of hard links */
345 ino64_t st_ino; /* [XSI] File serial number */
346 uid_t st_uid; /* [XSI] User ID of the file */
347 gid_t st_gid; /* [XSI] Group ID of the file */
348 dev_t st_rdev; /* [XSI] Device ID */
350 struct user32_timespec st_atimespec; /* time of last access */
351 struct user32_timespec st_mtimespec; /* time of last data modification */
352 struct user32_timespec st_ctimespec; /* time of last status change */
353 struct user32_timespec st_birthtimespec; /* time of file creation(birth) */
355 user32_time_t st_atime; /* [XSI] Time of last access */
356 user32_long_t st_atimensec; /* nsec of last access */
357 user32_time_t st_mtime; /* [XSI] Last data modification time */
358 user32_long_t st_mtimensec; /* last data modification nsec */
359 user32_time_t st_ctime; /* [XSI] Time of last status change */
360 user32_long_t st_ctimensec; /* nsec of last status change */
384 extern void munge_user32_stat64(struct stat64 *sbp, struct user32_stat64 *usbp); argument