Home
last modified time | relevance | path

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

/external/curl/src/
Dtool_util.c66 struct timespec tsnow; in tvnow() local
67 if(0 == clock_gettime(CLOCK_MONOTONIC, &tsnow)) { in tvnow()
68 now.tv_sec = tsnow.tv_sec; in tvnow()
69 now.tv_usec = tsnow.tv_nsec / 1000; in tvnow()
/external/curl/tests/libtest/
Dtestutil.c55 struct timespec tsnow; in tutil_tvnow() local
56 if(0 == clock_gettime(CLOCK_MONOTONIC, &tsnow)) { in tutil_tvnow()
57 now.tv_sec = tsnow.tv_sec; in tutil_tvnow()
58 now.tv_usec = tsnow.tv_nsec / 1000; in tutil_tvnow()
/external/curl/lib/
Dtimeval.c71 struct timespec tsnow; in Curl_now() local
88 (0 == clock_gettime(CLOCK_MONOTONIC, &tsnow))) { in Curl_now()
89 cnow.tv_sec = tsnow.tv_sec; in Curl_now()
90 cnow.tv_usec = (unsigned int)(tsnow.tv_nsec / 1000); in Curl_now()
/external/curl/tests/server/
Dutil.c441 struct timespec tsnow; in tvnow() local
442 if(0 == clock_gettime(CLOCK_MONOTONIC, &tsnow)) { in tvnow()
443 now.tv_sec = tsnow.tv_sec; in tvnow()
444 now.tv_usec = tsnow.tv_nsec / 1000; in tvnow()