Lines Matching refs:tv
101 static __always_inline int gettimeofday(struct timeval *tv, struct timezone *tz) in gettimeofday() argument
106 : "0" (__NR_gettimeofday),"D" (tv),"S" (tz) in gettimeofday()
120 static __always_inline void do_vgettimeofday(struct timeval * tv) in do_vgettimeofday() argument
131 gettimeofday(tv,NULL); in do_vgettimeofday()
149 tv->tv_sec = __vsyscall_gtod_data.wall_time_sec; in do_vgettimeofday()
159 tv->tv_sec += 1; in do_vgettimeofday()
162 tv->tv_usec = nsec / NSEC_PER_USEC; in do_vgettimeofday()
165 int __vsyscall(0) vgettimeofday(struct timeval * tv, struct timezone * tz) in vgettimeofday() argument
167 if (tv) in vgettimeofday()
168 do_vgettimeofday(tv); in vgettimeofday()
178 struct timeval tv; in vtime() local
183 vgettimeofday(&tv, NULL); in vtime()
184 result = tv.tv_sec; in vtime()