Lines Matching refs:times
43 access to a 64-bit type we can bypass stat and get the times directly. */
97 access to a 64-bit type we can bypass utime and set the times directly. */
136 struct timeval times[2];
137 times[0].tv_sec = times[1].tv_sec = (time_t)filetime;
138 times[0].tv_usec = times[1].tv_usec = 0;
139 if(utimes(filename, times)) {
145 struct utimbuf times;
146 times.actime = (time_t)filetime;
147 times.modtime = (time_t)filetime;
148 if(utime(filename, ×)) {