Lines Matching refs:mtime
27 struct timespec *atime, struct timespec *mtime) in utime_ts_from_tval() argument
35 mtime->tv_sec = 0; in utime_ts_from_tval()
36 mtime->tv_nsec = UTIME_NOW; in utime_ts_from_tval()
41 TIMEVAL_TO_TIMESPEC (&tvp[1], mtime); 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()
58 mtime->seconds = tvp[1].tv_sec; in utime_tvalue_from_tval()
59 mtime->microseconds = tvp[1].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
97 mtime->tv_sec = 0; in utime_ts_from_tspec()
98 mtime->tv_nsec = UTIME_NOW; in utime_ts_from_tspec()
103 *mtime = tsp[1]; 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()
125 mtime->microseconds = -1; in utime_tvalue_from_tspec()
127 mtime->microseconds = -2; in utime_tvalue_from_tspec()
129 TIMESPEC_TO_TIME_VALUE (mtime, &(tsp[1])); 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()