Lines Matching defs:tv
92 struct timeval tv[2];
94 tv[0].tv_sec = statp->st_atime;
95 tv[0].tv_usec = 0;
96 tv[1].tv_sec = statp->st_mtime;
97 tv[1].tv_usec = 0;
99 ret = futimesat(dir_fd, path, tv);
119 struct timeval tv[2];
121 tv[0].tv_sec = statp->st_atime;
122 tv[0].tv_usec = 0;
123 tv[1].tv_sec = statp->st_mtime;
124 tv[1].tv_usec = 0;
126 ret = futimes(fd, tv);