Home
last modified time | relevance | path

Searched refs:tsnow (Results 1 – 4 of 4) sorted by relevance

/curl/lib/
H A Dtimeval.c76 struct timespec tsnow; in Curl_now() local
96 (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()
/curl/tests/libtest/
H A Dtestutil.c57 struct timespec tsnow; in tutil_tvnow() local
58 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()
/curl/src/
H A Dtool_util.c77 struct timespec tsnow; in tvnow() local
78 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()
/curl/tests/server/
H A Dutil.c405 struct timespec tsnow; in tvnow() local
406 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 7 milliseconds