Searched refs:started_at (Results 1 – 5 of 5) sorted by relevance
/curl/tests/http/testenv/ |
H A D | curl.py | 62 def __init__(self, pid: int, started_at: datetime, run_dir): 64 self._started_at = started_at 767 started_at = datetime.now() 774 end_at = started_at + timedelta(seconds=self._timeout) \ 780 profile = RunProfile(p.pid, started_at, self._run_dir) 806 duration = now - started_at 817 duration=datetime.now() - started_at,
|
/curl/lib/ |
H A D | cf-socket.c | 941 struct curltime started_at; /* when socket was created */ member 1013 memset(&ctx->started_at, 0, sizeof(ctx->started_at)); in cf_socket_close() 1119 ctx->started_at = Curl_now(); in cf_socket_open() 1731 timediff_t ms = Curl_timediff(ctx->first_byte_at, ctx->started_at); in cf_socket_query() 2045 timeout_ms -= Curl_timediff(now, ctx->started_at); in cf_tcp_accept_timeleft() 2228 ctx->started_at = Curl_now(); in Curl_conn_tcp_listen_set()
|
/curl/lib/vquic/ |
H A D | curl_quiche.c | 97 struct curltime started_at; /* time the current attempt started */ member 1413 ctx->started_at = ctx->q.last_op; in cf_quiche_connect() 1430 (int)Curl_timediff(ctx->handshake_at, ctx->started_at)); in cf_quiche_connect() 1558 timediff_t ms = Curl_timediff(ctx->q.first_byte_at, ctx->started_at); in cf_quiche_query()
|
H A D | curl_ngtcp2.c | 131 struct curltime started_at; /* time the current attempt started */ member 2364 ctx->started_at = now; in cf_ngtcp2_connect() 2384 (int)Curl_timediff(now, ctx->started_at)); in cf_ngtcp2_connect() 2459 timediff_t ms = Curl_timediff(ctx->q.first_byte_at, ctx->started_at); in cf_ngtcp2_query()
|
H A D | curl_osslq.c | 288 struct curltime started_at; /* time the current attempt started */ member 1690 ctx->started_at = now; in cf_osslq_connect() 1720 (int)Curl_timediff(now, ctx->started_at)); in cf_osslq_connect() 2286 timediff_t ms = Curl_timediff(ctx->first_byte_at, ctx->started_at); in cf_osslq_query()
|
Completed in 46 milliseconds