Lines Matching refs:now
35 struct curltime now;
39 now.tv_sec = (time_t)(count.QuadPart / Curl_freq.QuadPart);
40 now.tv_usec = (int)((count.QuadPart % Curl_freq.QuadPart) * 1000000 /
54 now.tv_sec = milliseconds / 1000;
55 now.tv_usec = (milliseconds % 1000) * 1000;
57 return now;
73 struct timeval now;
119 (void)gettimeofday(&now, NULL);
120 cnow.tv_sec = now.tv_sec;
121 cnow.tv_usec = (unsigned int)now.tv_usec;
172 struct timeval now;
174 (void)gettimeofday(&now, NULL);
175 ret.tv_sec = now.tv_sec;
176 ret.tv_usec = (int)now.tv_usec;
187 struct curltime now;
188 now.tv_sec = time(NULL);
189 now.tv_usec = 0;
190 return now;