Lines Matching refs:STAT_TIMESPEC
52 # define STAT_TIMESPEC(st, st_xtim) ((st)->st_xtim) macro
57 # define STAT_TIMESPEC(st, st_xtim) ((st)->st_xtim##espec)
68 # if defined STAT_TIMESPEC in get_stat_atime_ns()
69 return STAT_TIMESPEC (st, st_atim).tv_nsec; in get_stat_atime_ns()
81 # if defined STAT_TIMESPEC in get_stat_ctime_ns()
82 return STAT_TIMESPEC (st, st_ctim).tv_nsec; in get_stat_ctime_ns()
94 # if defined STAT_TIMESPEC in get_stat_mtime_ns()
95 return STAT_TIMESPEC (st, st_mtim).tv_nsec; in get_stat_mtime_ns()
108 return STAT_TIMESPEC (st, st_birthtim).tv_nsec; in get_stat_birthtime_ns()
120 #ifdef STAT_TIMESPEC in get_stat_atime()
121 return STAT_TIMESPEC (st, st_atim); in get_stat_atime()
134 #ifdef STAT_TIMESPEC in get_stat_ctime()
135 return STAT_TIMESPEC (st, st_ctim); in get_stat_ctime()
148 #ifdef STAT_TIMESPEC in get_stat_mtime()
149 return STAT_TIMESPEC (st, st_mtim); in get_stat_mtime()
167 t = STAT_TIMESPEC (st, st_birthtim); in get_stat_birthtime()
213 #if defined __sun && defined STAT_TIMESPEC in stat_time_normalize()