Searched refs:tsnow (Results 1 – 7 of 7) sorted by relevance
/external/rust/crates/grpcio-sys/grpc/third_party/cares/cares/ |
D | ares__timeval.c | 47 struct timespec tsnow; in ares__tvnow() local 48 if(0 == clock_gettime(CLOCK_MONOTONIC, &tsnow)) { in ares__tvnow() 49 now.tv_sec = tsnow.tv_sec; in ares__tvnow() 50 now.tv_usec = tsnow.tv_nsec / 1000; in ares__tvnow()
|
/external/curl/src/ |
D | tool_util.c | 80 struct timespec tsnow; in tvnow() local 81 if(0 == clock_gettime(CLOCK_MONOTONIC, &tsnow)) { in tvnow() 82 now.tv_sec = tsnow.tv_sec; in tvnow() 83 now.tv_usec = (int)(tsnow.tv_nsec / 1000); in tvnow()
|
/external/curl/tests/libtest/ |
D | testutil.c | 57 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()
|
/external/mesa3d/src/util/ |
D | futex.h | 103 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/virglrenderer/src/mesa/util/ |
D | futex.h | 103 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/ |
D | timeval.c | 76 struct timespec tsnow; in Curl_now() local 95 (0 == clock_gettime(CLOCK_MONOTONIC, &tsnow))) { in Curl_now() 96 cnow.tv_sec = tsnow.tv_sec; in Curl_now() 97 cnow.tv_usec = (unsigned int)(tsnow.tv_nsec / 1000); in Curl_now()
|
/external/curl/tests/server/ |
D | util.c | 408 struct timespec tsnow; in tvnow() local 409 if(0 == clock_gettime(CLOCK_MONOTONIC, &tsnow)) { in tvnow() 410 now.tv_sec = tsnow.tv_sec; in tvnow() 411 now.tv_usec = (int)(tsnow.tv_nsec / 1000); in tvnow()
|