Lines Matching refs:times
867 struct timespec times[2]; in handle_setattr() local
898 times[0].tv_nsec = UTIME_OMIT; in handle_setattr()
899 times[1].tv_nsec = UTIME_OMIT; in handle_setattr()
902 times[0].tv_nsec = UTIME_NOW; in handle_setattr()
904 times[0].tv_sec = req->atime; in handle_setattr()
905 times[0].tv_nsec = req->atimensec; in handle_setattr()
910 times[1].tv_nsec = UTIME_NOW; in handle_setattr()
912 times[1].tv_sec = req->mtime; in handle_setattr()
913 times[1].tv_nsec = req->mtimensec; in handle_setattr()
917 handler->token, path, times[0].tv_sec, times[1].tv_sec); in handle_setattr()
918 if (utimensat(-1, path, times, 0) < 0) { in handle_setattr()