Home | History | Annotate | Download | only in filesystem

Lines Matching refs:tbuf

601     struct ::timeval tbuf[2];
602 tbuf[0].tv_sec = atime.tv_sec;
603 tbuf[0].tv_usec = duration_cast<microseconds>(nanoseconds(atime.tv_nsec)).count();
605 &tbuf[1].tv_sec, &tbuf[1].tv_usec, new_time);
612 if (::utimes(p.c_str(), tbuf) == -1) {
616 struct ::timespec tbuf[2];
617 tbuf[0].tv_sec = 0;
618 tbuf[0].tv_nsec = UTIME_OMIT;
621 &tbuf[1].tv_sec, &tbuf[1].tv_nsec, new_time);
627 if (::utimensat(AT_FDCWD, p.c_str(), tbuf, 0) == -1) {