Searched refs:paused (Results 1 – 7 of 7) sorted by relevance
/curl/tests/http/clients/ |
H A D | h2-pausing.c | 163 int paused; member 183 ++handle->paused; in cb() 185 handle->idx, handle->paused, (long)realsize); in cb() 186 assert(handle->paused == 1); in cb() 278 handles[i].paused = 0; in main() 318 if(!handles[i].paused) { in main() 322 else if(handles[i].paused != 1) { in main() 324 i, handles[i].paused); in main() 353 if(handles[i].paused != 1 || !handles[i].resumed) { in main() 355 "result %d - wtf?\n", i, handles[i].paused, in main() [all …]
|
H A D | hx-download.c | 155 int paused; member 195 t->paused = 1; in my_write_cb() 460 if(!t->done && t->paused && t->easy) { in main() 472 if(!t->done && t->paused) { in main() 474 t->paused = 0; in main()
|
H A D | hx-upload.c | 158 int paused; member 224 t->paused = 1; in my_read_cb() 546 if(!t->done && t->paused && t->easy) { in main() 558 if(!t->done && t->paused) { in main() 560 t->paused = 0; in main()
|
/curl/tests/libtest/ |
H A D | lib1533.c | 39 int paused; member 48 data->paused = 0; in reset_data() 73 data->paused = 1; in read_callback() 91 if(data->paused) { in write_callback() 93 data->paused = 0; in write_callback()
|
/curl/docs/libcurl/ |
H A D | curl_easy_pause.md | 30 paused, and you can unpause a connection that was previously paused. Unlike 34 A connection can be paused by using this function or by letting the read or 54 A paused transfer is excluded from low speed cancels via the 90 transfers over the connection is paused and the others continue flowing, 91 libcurl might end up buffering contents for the paused transfer. It has to do 93 already announced window size for the paused transfer allows the server to 96 buffering 32 megabyte of data for a paused stream. 98 When such a paused stream is unpaused again, any buffered data is delivered 129 pause. Consider not using paused receiving if you allow libcurl to uncompress 134 transfer is paused. This means that if a window size of 64 MB is used, libcurl
|
/curl/lib/ |
H A D | cw-out.c | 105 BIT(paused); 218 while(blen && !ctx->paused) { in cw_out_ptr_flush() 238 ctx->paused = TRUE; in cw_out_ptr_flush() 300 if(ctx->paused) in cw_out_flush_chain() 313 DEBUGASSERT(ctx->paused); in cw_out_flush_chain() 433 CURL_TRC_WRITE(data, "cw-out is%spaused", ctx->paused ? "" : " not"); in Curl_cw_out_is_paused() 434 return ctx->paused; in Curl_cw_out_is_paused() 448 if(unpause && ctx->paused) in cw_out_flush() 449 ctx->paused = FALSE; in cw_out_flush() 450 if(ctx->paused) in cw_out_flush()
|
H A D | http2.c | 296 bool paused) in cf_h2_update_local_win() argument 302 dwsize = paused ? 0 : cf_h2_get_desired_local_win(cf, data); in cf_h2_update_local_win() 339 bool paused) in cf_h2_update_local_win() argument 344 (void)paused; in cf_h2_update_local_win()
|
Completed in 19 milliseconds