Lines Matching defs:timebuf
365 struct utimbuf timebuf;
366 timebuf.actime = time(NULL);
367 timebuf.modtime = statbuf->st_mtime;
368 res += utime(filename, &timebuf); /* set access and modification times */
370 struct timespec timebuf[2];
371 memset(timebuf, 0, sizeof(timebuf));
372 timebuf[0].tv_nsec = UTIME_NOW;
373 timebuf[1].tv_sec = statbuf->st_mtime;
374 res += utimensat(AT_FDCWD, filename, timebuf, 0); /* set access and modification times */