Lines Matching refs:ts
96 struct timespec ts[2]; in tvtouch() local
112 ts[0].tv_sec = 0; in tvtouch()
113 ts[0].tv_nsec = UTIME_NOW; in tvtouch()
117 ts[0].tv_sec = 0; in tvtouch()
118 ts[0].tv_nsec = UTIME_OMIT; in tvtouch()
122 ts[0].tv_sec = av->tv_sec; in tvtouch()
123 ts[0].tv_nsec = NS(av->tv_nsec); in tvtouch()
127 ts[1].tv_sec = 0; in tvtouch()
128 ts[1].tv_nsec = UTIME_NOW; in tvtouch()
132 ts[1].tv_sec = 0; in tvtouch()
133 ts[1].tv_nsec = UTIME_OMIT; in tvtouch()
137 ts[1].tv_sec = mv->tv_sec; in tvtouch()
138 ts[1].tv_nsec = NS(mv->tv_nsec); in tvtouch()
142 …if (!utimensat(AT_FDCWD, path, ts[0].tv_nsec == UTIME_NOW && ts[1].tv_nsec == UTIME_NOW ? (struct … in tvtouch()
154 …if ((ts[0].tv_nsec != UTIME_NOW || ts[1].tv_nsec != UTIME_NOW) && utimensat(AT_FDCWD, path, ts, (f… in tvtouch()
178 ts[0].tv_sec = st.st_atime; in tvtouch()
179 ts[0].tv_nsec = ST_ATIME_NSEC_GET(&st); in tvtouch()
183 ts[0].tv_sec = av->tv_sec; in tvtouch()
184 ts[0].tv_nsec = NS(av->tv_nsec); in tvtouch()
188 ts[1].tv_sec = st.st_mtime; in tvtouch()
189 ts[1].tv_nsec = ST_MTIME_NSEC_GET(&st); in tvtouch()
193 ts[1].tv_sec = mv->tv_sec; in tvtouch()
194 ts[1].tv_nsec = NS(mv->tv_nsec); in tvtouch()
196 if (!utimets(path, ts)) in tvtouch()