Lines Matching refs:times
576 struct timespec times[2]; in handle_setattr() local
602 times[0].tv_nsec = UTIME_OMIT; in handle_setattr()
603 times[1].tv_nsec = UTIME_OMIT; in handle_setattr()
606 times[0].tv_nsec = UTIME_NOW; in handle_setattr()
608 times[0].tv_sec = req->atime; in handle_setattr()
609 times[0].tv_nsec = req->atimensec; in handle_setattr()
614 times[1].tv_nsec = UTIME_NOW; in handle_setattr()
616 times[1].tv_sec = req->mtime; in handle_setattr()
617 times[1].tv_nsec = req->mtimensec; in handle_setattr()
621 handler->token, path, times[0].tv_sec, times[1].tv_sec); in handle_setattr()
622 if (utimensat(-1, path, times, 0) < 0) { in handle_setattr()