Searched refs:tsnow (Results 1 – 4 of 4) sorted by relevance
76 struct timespec tsnow; in Curl_now() local96 (0 == clock_gettime(CLOCK_MONOTONIC_RAW, &tsnow))) { in Curl_now()97 cnow.tv_sec = tsnow.tv_sec; in Curl_now()98 cnow.tv_usec = (int)(tsnow.tv_nsec / 1000); in Curl_now()108 (0 == clock_gettime(CLOCK_MONOTONIC, &tsnow))) { in Curl_now()109 cnow.tv_sec = tsnow.tv_sec; in Curl_now()110 cnow.tv_usec = (int)(tsnow.tv_nsec / 1000); in Curl_now()
57 struct timespec tsnow; in tutil_tvnow() local58 if(0 == clock_gettime(CLOCK_MONOTONIC, &tsnow)) { in tutil_tvnow()59 now.tv_sec = tsnow.tv_sec; in tutil_tvnow()60 now.tv_usec = (int)(tsnow.tv_nsec / 1000); in tutil_tvnow()
77 struct timespec tsnow; in tvnow() local78 if(0 == clock_gettime(CLOCK_MONOTONIC, &tsnow)) { in tvnow()79 now.tv_sec = tsnow.tv_sec; in tvnow()80 now.tv_usec = (int)(tsnow.tv_nsec / 1000); in tvnow()
405 struct timespec tsnow; in tvnow() local406 if(0 == clock_gettime(CLOCK_MONOTONIC, &tsnow)) { in tvnow()407 now.tv_sec = tsnow.tv_sec; in tvnow()408 now.tv_usec = (int)(tsnow.tv_nsec / 1000); in tvnow()
Completed in 6 milliseconds