/curl/lib/ |
H A D | timediff.c | 39 if(!tv) in curlx_mstotv() 54 tv->tv_sec = (time_t)tv_sec; in curlx_mstotv() 55 tv->tv_usec = (suseconds_t)tv_usec; in curlx_mstotv() 62 tv->tv_sec = (long)tv_sec; in curlx_mstotv() 63 tv->tv_usec = (long)tv_usec; in curlx_mstotv() 70 tv->tv_sec = (int)tv_sec; in curlx_mstotv() 71 tv->tv_usec = (int)tv_usec; in curlx_mstotv() 75 tv->tv_sec = 0; in curlx_mstotv() 76 tv->tv_usec = 0; in curlx_mstotv() 79 return tv; in curlx_mstotv() [all …]
|
H A D | timediff.h | 45 struct timeval *curlx_mstotv(struct timeval *tv, timediff_t ms); 50 timediff_t curlx_tvtoms(struct timeval *tv);
|
H A D | curl_rtmp.c | 46 #define SET_RCVTIMEO(tv,s) int tv = s*1000 argument 48 #define SET_RCVTIMEO(tv,s) int tv = s*1000 argument 50 #define SET_RCVTIMEO(tv,s) struct timeval tv = {s,0} argument 235 SET_RCVTIMEO(tv, 10); in rtmp_connect() 252 (char *)&tv, sizeof(tv)); in rtmp_connect()
|
H A D | openldap.c | 718 struct timeval tv = {0, 0}; in oldap_connecting() local 724 rc = ldap_result(li->ld, li->msgid, LDAP_MSG_ONE, &tv, &msg); in oldap_connecting() 973 struct timeval tv = {0, 0}; in oldap_recv() local 984 rc = ldap_result(li->ld, lr->msgid, LDAP_MSG_ONE, &tv, &msg); in oldap_recv()
|
H A D | asyn-ares.c | 461 struct timeval *tvp, tv, store; in Curl_resolver_wait_resolv() local 474 tvp = ares_timeout((ares_channel)data->state.async.resolver, &store, &tv); in Curl_resolver_wait_resolv()
|
H A D | multi.c | 3432 struct curltime *tv = &d->state.expiretime; local 3455 tv->tv_sec = 0; 3456 tv->tv_usec = 0; 3461 memcpy(tv, &node->time, sizeof(*tv)); 3465 multi->timetree = Curl_splayinsert(*tv, multi->timetree,
|
/curl/tests/libtest/ |
H A D | testtrace.c | 92 struct timeval tv; in libtest_debug_cb() local 104 tv = tutil_tvnow(); in libtest_debug_cb() 106 epoch_offset = time(NULL) - tv.tv_sec; in libtest_debug_cb() 109 secs = epoch_offset + tv.tv_sec; in libtest_debug_cb() 112 now->tm_hour, now->tm_min, now->tm_sec, (long)tv.tv_usec); in libtest_debug_cb()
|
H A D | lib582.c | 302 struct timeval tv = {10, 0}; in test() local 311 tv.tv_sec = usTimeout / 1000000; in test() 312 tv.tv_usec = usTimeout % 1000000; in test() 315 tv.tv_sec = 0; in test() 316 tv.tv_usec = 100000; in test() 319 select_test((int)maxFd, &readSet, &writeSet, NULL, &tv); in test()
|
H A D | first.c | 47 struct timeval *tv) in select_wrapper() argument 60 Sleep((DWORD)curlx_tvtoms(tv)); in select_wrapper() 64 return select(nfds, rd, wr, exc, tv); in select_wrapper()
|
H A D | lib530.c | 306 struct timeval tv = {10, 0}; in testone() local 315 tv.tv_sec = usTimeout / 1000000; in testone() 316 tv.tv_usec = usTimeout % 1000000; in testone() 319 tv.tv_sec = 0; in testone() 320 tv.tv_usec = 100000; in testone() 324 select_test((int)maxFd, &readSet, &writeSet, NULL, &tv); in testone()
|
H A D | test.h | 69 struct timeval *tv);
|
/curl/docs/examples/ |
H A D | sendrecv.c | 36 struct timeval tv; in wait_on_socket() local 40 tv.tv_sec = timeout_ms / 1000; in wait_on_socket() 41 tv.tv_usec = (int)(timeout_ms % 1000) * 1000; in wait_on_socket() 73 res = select((int)sockfd + 1, &infd, &outfd, &errfd, &tv); in wait_on_socket()
|
H A D | multi-event.c | 159 struct timeval tv; in start_timeout() local 160 tv.tv_sec = timeout_ms / 1000; in start_timeout() 161 tv.tv_usec = (timeout_ms % 1000) * 1000; in start_timeout() 163 evtimer_add(timeout, &tv); in start_timeout()
|
H A D | http2-upload.c | 141 struct timeval tv; in my_trace() local 146 gettimeofday(&tv, NULL); in my_trace() 148 epoch_offset = time(NULL) - tv.tv_sec; in my_trace() 151 secs = epoch_offset + tv.tv_sec; in my_trace() 154 now->tm_hour, now->tm_min, now->tm_sec, (long)tv.tv_usec); in my_trace()
|
/curl/src/ |
H A D | tool_cb_dbg.c | 98 struct timeval tv; in tool_debug_cb() local 111 tv = tvnow(); in tool_debug_cb() 113 hms_for_sec(tv.tv_sec), (long)tv.tv_usec); in tool_debug_cb()
|
/curl/tests/server/ |
H A D | util.c | 89 struct timeval tv; in logmsg() local 101 tv = tvnow(); in logmsg() 103 epoch_offset = time(NULL) - tv.tv_sec; in logmsg() 106 sec = epoch_offset + tv.tv_sec; in logmsg() 112 (long)tv.tv_usec); in logmsg()
|
H A D | sockfilt.c | 634 fd_set *exceptfds, struct timeval *tv) in select_ws() argument 652 if(tv) { in select_ws() 653 timeout_ms = (DWORD)curlx_tvtoms(tv); in select_ws() 757 tv->tv_sec = 0; in select_ws() 758 tv->tv_usec = 0; in select_ws() 760 if(select(fd + 1, &readsock, &writesock, &exceptsock, tv) == 1) { in select_ws()
|
/curl/lib/vquic/ |
H A D | curl_osslq.c | 1634 struct timeval tv; in check_and_set_expiry() local 1639 SSL_get_event_timeout(ctx->tls.ossl.ssl, &tv, &is_infinite) && in check_and_set_expiry() 1641 timeoutms = curlx_tvtoms(&tv); in check_and_set_expiry() 1650 if(SSL_get_event_timeout(ctx->tls.ossl.ssl, &tv, &is_infinite)) { in check_and_set_expiry() 1651 timeoutms = curlx_tvtoms(&tv); in check_and_set_expiry()
|
/curl/lib/vtls/ |
H A D | openssl.c | 1046 struct curltime tv = Curl_now(); in ossl_seed() local 1048 tv.tv_sec *= (time_t)i + 1; in ossl_seed() 1049 tv.tv_usec *= (int)i + 2; in ossl_seed() 1050 tv.tv_sec ^= ((Curl_now().tv_sec + (time_t)Curl_now().tv_usec) * in ossl_seed() 1052 tv.tv_usec ^= (int) ((Curl_now().tv_sec + (time_t)Curl_now().tv_usec) * in ossl_seed() 1054 memcpy(&randb[i * sizeof(struct curltime)], &tv, in ossl_seed()
|