Lines Matching defs:tv
91 struct timeval tv[2];
93 tv[0].tv_sec = statp->st_atime;
94 tv[0].tv_usec = 0;
95 tv[1].tv_sec = statp->st_mtime;
96 tv[1].tv_usec = 0;
98 ret = futimesat(dir_fd, path, tv);
118 struct timeval tv[2];
120 tv[0].tv_sec = statp->st_atime;
121 tv[0].tv_usec = 0;
122 tv[1].tv_sec = statp->st_mtime;
123 tv[1].tv_usec = 0;
125 ret = futimes(fd, tv);