Home
last modified time | relevance | path

Searched refs:tsnow (Results 1 – 5 of 5) 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/mesa3d/src/util/
Dfutex.h103 struct timespec tsnow, tsrel; in futex_wait() local
108 clock_gettime(CLOCK_MONOTONIC, &tsnow); in futex_wait()
109 if (timespeccmp(&tsnow, timeout, <)) in futex_wait()
110 timespecsub(timeout, &tsnow, &tsrel); in futex_wait()
/external/curl/lib/
Dtimeval.c73 struct timespec tsnow; in Curl_now() local
90 (0 == clock_gettime(CLOCK_MONOTONIC, &tsnow))) { in Curl_now()
91 cnow.tv_sec = tsnow.tv_sec; in Curl_now()
92 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()