Lines Matching refs:atime
27 struct timespec *atime, struct timespec *mtime) in utime_ts_from_tval() argument
33 atime->tv_sec = 0; in utime_ts_from_tval()
34 atime->tv_nsec = UTIME_NOW; in utime_ts_from_tval()
40 TIMEVAL_TO_TIMESPEC (&tvp[0], atime); in utime_ts_from_tval()
48 time_value_t *atime, time_value_t *mtime) in utime_tvalue_from_tval() argument
53 atime->microseconds = mtime->microseconds = -1; in utime_tvalue_from_tval()
56 atime->seconds = tvp[0].tv_sec; in utime_tvalue_from_tval()
57 atime->microseconds = tvp[0].tv_usec; in utime_tvalue_from_tval()
68 struct timespec atime, mtime; in hurd_futimes() local
70 utime_ts_from_tval (tvp, &atime, &mtime); in hurd_futimes()
72 err = __file_utimens (port, atime, mtime); in hurd_futimes()
89 struct timespec *atime, struct timespec *mtime) in utime_ts_from_tspec() argument
95 atime->tv_sec = 0; in utime_ts_from_tspec()
96 atime->tv_nsec = UTIME_NOW; in utime_ts_from_tspec()
102 *atime = tsp[0]; in utime_ts_from_tspec()
110 time_value_t *atime, time_value_t *mtime) in utime_tvalue_from_tspec() argument
115 atime->microseconds = mtime->microseconds = -1; in utime_tvalue_from_tspec()
119 atime->microseconds = -1; in utime_tvalue_from_tspec()
121 atime->microseconds = -2; in utime_tvalue_from_tspec()
123 TIMESPEC_TO_TIME_VALUE (atime, &(tsp[0])); in utime_tvalue_from_tspec()
138 struct timespec atime, mtime; in hurd_futimens() local
140 utime_ts_from_tspec (tsp, &atime, &mtime); in hurd_futimens()
142 err = __file_utimens (port, atime, mtime); in hurd_futimens()