Lines Matching refs:now
28 struct timeval now; in ares__tvnow() local
30 now.tv_sec = milliseconds / 1000; in ares__tvnow()
31 now.tv_usec = (milliseconds % 1000) * 1000; in ares__tvnow()
32 return now; in ares__tvnow()
46 struct timeval now; in ares__tvnow() local
49 now.tv_sec = tsnow.tv_sec; in ares__tvnow()
50 now.tv_usec = tsnow.tv_nsec / 1000; in ares__tvnow()
59 (void)gettimeofday(&now, NULL); in ares__tvnow()
62 now.tv_sec = (long)time(NULL); in ares__tvnow()
63 now.tv_usec = 0; in ares__tvnow()
66 return now; in ares__tvnow()
78 struct timeval now; in ares__tvnow() local
79 (void)gettimeofday(&now, NULL); in ares__tvnow()
80 return now; in ares__tvnow()
90 struct timeval now; in ares__tvnow() local
91 now.tv_sec = (long)time(NULL); in ares__tvnow()
92 now.tv_usec = 0; in ares__tvnow()
93 return now; in ares__tvnow()