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 = (unsigned 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 = (unsigned 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.c76 struct timespec tsnow; in tvnow() local
77 if(0 == clock_gettime(CLOCK_MONOTONIC, &tsnow)) { in tvnow()
78 now.tv_sec = tsnow.tv_sec; in tvnow()
79 now.tv_usec = (int)(tsnow.tv_nsec / 1000); in tvnow()
/curl/tests/server/
H A Dutil.c406 struct timespec tsnow; in tvnow() local
407 if(0 == clock_gettime(CLOCK_MONOTONIC, &tsnow)) { in tvnow()
408 now.tv_sec = tsnow.tv_sec; in tvnow()
409 now.tv_usec = (int)(tsnow.tv_nsec / 1000); in tvnow()

Completed in 35 milliseconds