Searched refs:pending (Results 1 – 16 of 16) sorted by relevance
/curl/.github/workflows/ |
H A D | appveyor-status.yml | 34 state: (.status | sub("queued"; "pending") 35 | sub("starting"; "pending") 36 | sub("running"; "pending")
|
/curl/docs/examples/ |
H A D | crawler.c | 187 int pending = 0; in main() local 212 if(pending < max_requests && (complete + pending) < max_total) { in main() 213 pending += follow_links(multi_handle, mem, url); in main() 230 pending--; in main()
|
H A D | multi-event.c | 92 int pending; in check_multi_info() local 96 while((message = curl_multi_info_read(curl_handle, &pending))) { in check_multi_info()
|
H A D | multi-uv.c | 108 int pending; in check_multi_info() local 112 while((message = curl_multi_info_read(context->uv->multi, &pending))) { in check_multi_info()
|
/curl/tests/data/ |
H A D | test1557 | 21 Removing easy handle that's in the pending connections list doesn't leave behind a dangling entry
|
/curl/lib/ |
H A D | multihandle.h | 97 struct Curl_llist pending; /* in PENDING */ member
|
H A D | doh.h | 94 unsigned int pending; /* still outstanding probes */ member
|
H A D | doh.c | 228 dohp->pending--; in doh_done() 229 infof(doh, "a DoH request is completed, %u to go", dohp->pending); in doh_done() 233 if(!dohp->pending) { in doh_done() 450 dohp->pending++; in Curl_doh() 460 dohp->pending++; in Curl_doh() 490 dohp->pending++; in Curl_doh() 1309 else if(!dohp->pending) { in Curl_doh_is_resolved()
|
H A D | cfilters.c | 526 int pending = 0; in Curl_conn_cf_needs_flush() local 528 &pending, NULL) : CURLE_UNKNOWN_OPTION; in Curl_conn_cf_needs_flush() 529 return (result || !pending) ? FALSE : TRUE; in Curl_conn_cf_needs_flush()
|
H A D | multi.c | 422 Curl_llist_init(&multi->pending, NULL); in Curl_multi_handle() 2560 Curl_llist_append(&multi->pending, data, &data->multi_queue); 4114 struct Curl_llist_node *e = Curl_llist_head(&multi->pending); 4341 for(e = Curl_llist_head(&multi->pending); e; e = Curl_node_next(e)) {
|
/curl/docs/libcurl/opts/ |
H A D | CURLMOPT_MAX_HOST_CONNECTIONS.md | 35 kept pending until a connection becomes available.
|
H A D | CURLOPT_INTERLEAVEFUNCTION.md | 52 any pending RTP data before marking the request as finished.
|
/curl/docs/libcurl/ |
H A D | curl_multi_wait.md | 37 Alternatively, if the multi handle has a pending internal timeout that has a
|
H A D | curl_multi_poll.md | 38 Alternatively, if the multi handle has a pending internal timeout that has a
|
H A D | libcurl-ws.md | 60 about the fragment: type, offset, size and how much data there is pending to
|
/curl/lib/vquic/ |
H A D | curl_msh3.c | 740 bool pending = FALSE; in cf_msh3_data_pending() local 749 pending = !Curl_bufq_is_empty(&stream->recvbuf); in cf_msh3_data_pending() 751 if(pending) in cf_msh3_data_pending() 756 return pending; in cf_msh3_data_pending()
|
Completed in 35 milliseconds