Lines Matching refs:times
662 struct timespec times[2]; in handle_setattr() local
694 times[0].tv_nsec = UTIME_OMIT; in handle_setattr()
695 times[1].tv_nsec = UTIME_OMIT; in handle_setattr()
698 times[0].tv_nsec = UTIME_NOW; in handle_setattr()
700 times[0].tv_sec = req->atime; in handle_setattr()
701 times[0].tv_nsec = req->atimensec; in handle_setattr()
706 times[1].tv_nsec = UTIME_NOW; in handle_setattr()
708 times[1].tv_sec = req->mtime; in handle_setattr()
709 times[1].tv_nsec = req->mtimensec; in handle_setattr()
713 << " with atime " << times[0].tv_sec << ", mtime=" << times[1].tv_sec; in handle_setattr()
714 if (utimensat(-1, path, times, 0) < 0) { in handle_setattr()