Lines Matching defs:times
76 * time_t a_mytime: control setting of access/modification times:
77 * == 0 - replicate source file access/modification times
78 * != 0 - use specified time for access/modification times
88 struct utimbuf times;
152 * determine how to set access/modification times for target:
153 * -- a_mytime == 0: replicate source file access/modification times
154 * -- otherwise: use a_mytime for file access/modification times
158 times.actime = srcStatbuf.st_atime;
159 times.modtime = srcStatbuf.st_mtime;
161 times.actime = a_mytime;
162 times.modtime = a_mytime;
165 /* set access/modification times for target */
167 if (utime(a_dstPath, ×) != 0) {