Lines Matching refs:now
38 struct timeval now; in tutil_tvnow() local
40 now.tv_sec = (long)(milliseconds / 1000); in tutil_tvnow()
41 now.tv_usec = (long)((milliseconds % 1000) * 1000); in tutil_tvnow()
42 return now; in tutil_tvnow()
56 struct timeval now; in tutil_tvnow() local
59 now.tv_sec = tsnow.tv_sec; in tutil_tvnow()
60 now.tv_usec = (int)(tsnow.tv_nsec / 1000); in tutil_tvnow()
69 (void)gettimeofday(&now, NULL); in tutil_tvnow()
72 now.tv_sec = time(NULL); in tutil_tvnow()
73 now.tv_usec = 0; in tutil_tvnow()
76 return now; in tutil_tvnow()
88 struct timeval now; in tutil_tvnow() local
89 (void)gettimeofday(&now, NULL); in tutil_tvnow()
90 return now; in tutil_tvnow()
100 struct timeval now; in tutil_tvnow() local
101 now.tv_sec = time(NULL); in tutil_tvnow()
102 now.tv_usec = 0; in tutil_tvnow()
103 return now; in tutil_tvnow()