Home
last modified time | relevance | path

Searched refs:progress (Results 1 – 25 of 84) sorted by relevance

1234

/curl/lib/
H A Dprogress.c136 data->progress.lastshow = 0; in Curl_pgrsDone()
142 !data->progress.callback) in Curl_pgrsDone()
255 data->progress.ul_limit_start = data->progress.start; in Curl_pgrsStartNow()
256 data->progress.dl_limit_start = data->progress.start; in Curl_pgrsStartNow()
344 data->progress.dl_limit_size = data->progress.downloaded; in Curl_ratelimit()
351 data->progress.ul_limit_size = data->progress.uploaded; in Curl_ratelimit()
509 ulestimate = data->progress.size_ul / data->progress.ulspeed; in progress_meter()
522 dlestimate = data->progress.size_dl / data->progress.dlspeed; in progress_meter()
544 data->progress.size_ul:data->progress.uploaded)+ in progress_meter()
546 data->progress.size_dl:data->progress.downloaded); in progress_meter()
[all …]
H A Dgetinfo.c49 struct Progress *pro = &data->progress; in Curl_initinfo()
387 *param_offt = data->progress.uploaded; in getinfo_offt()
390 *param_offt = data->progress.downloaded; in getinfo_offt()
393 *param_offt = data->progress.dlspeed; in getinfo_offt()
396 *param_offt = data->progress.ulspeed; in getinfo_offt()
400 data->progress.size_dl:-1; in getinfo_offt()
404 data->progress.size_ul:-1; in getinfo_offt()
407 *param_offt = data->progress.timespent; in getinfo_offt()
413 *param_offt = data->progress.t_connect; in getinfo_offt()
504 (double)data->progress.size_dl:-1; in getinfo_double()
[all …]
H A Dspeedcheck.c48 if((data->progress.current_speed >= 0) && data->set.low_speed_time) { in Curl_speedcheck()
49 if(data->progress.current_speed < data->set.low_speed_limit) { in Curl_speedcheck()
H A Dcurl_sasl.c344 bool force_ir, saslprogress *progress) in Curl_sasl_start() argument
369 *progress = SASL_IDLE; in Curl_sasl_start()
518 *progress = SASL_INPROGRESS; in Curl_sasl_start()
533 int code, saslprogress *progress) in Curl_sasl_continue() argument
553 *progress = SASL_INPROGRESS; in Curl_sasl_continue()
558 *progress = SASL_DONE; in Curl_sasl_continue()
565 *progress = SASL_DONE; in Curl_sasl_continue()
572 *progress = SASL_DONE; in Curl_sasl_continue()
708 *progress = SASL_DONE; in Curl_sasl_continue()
718 *progress = SASL_DONE; in Curl_sasl_continue()
[all …]
H A Dcurl_sasl.h159 bool force_ir, saslprogress *progress);
163 int code, saslprogress *progress);
/curl/tests/unit/
H A Dunit1399.c51 data->progress.t_startsingle.tv_sec = fake_now.tv_sec + seconds_offset; in fake_t_startsingle_time()
52 data->progress.t_startsingle.tv_usec = fake_now.tv_usec; in fake_t_startsingle_time()
87 data.progress.t_nslookup = 0;
88 data.progress.t_connect = 0;
89 data.progress.t_appconnect = 0;
90 data.progress.t_pretransfer = 0;
91 data.progress.t_starttransfer = 0;
92 data.progress.t_redirect = 0;
93 data.progress.start.tv_sec = now.tv_sec - 2;
94 data.progress.start.tv_usec = now.tv_usec;
[all …]
H A Dunit1303.c139 data->progress.t_startsingle.tv_sec = BASE;
140 data->progress.t_startsingle.tv_usec = 0;
141 data->progress.t_startop.tv_sec = BASE;
142 data->progress.t_startop.tv_usec = 0;
H A Dunit1606.c66 easy->progress.current_speed = speed; in runawhile()
/curl/docs/cmdline-opts/
H A Dno-progress-meter.md4 Long: no-progress-meter
5 Help: Do not show the progress meter
13 - --no-progress-meter -o store $URL
16 # `--no-progress-meter`
18 Option to switch off the progress meter output without muting or otherwise
22 --progress-meter to enable the progress meter again.
H A Dprogress-bar.md5 Long: progress-bar
6 Help: Display transfer progress as a bar
17 # `--progress-bar`
19 Make curl display transfer progress as a simple progress bar instead of the
22 This progress bar draws a single line of '#' characters across the screen and
H A Dsilent.md13 - no-progress-meter
20 Silent or quiet mode. Do not show progress meter or error messages. Makes Curl
24 Use --show-error in addition to this option to disable progress meter but
H A Dshow-error.md12 - no-progress-meter
/curl/docs/libcurl/opts/
H A DCURLOPT_PROGRESSDATA.md16 CURLOPT_PROGRESSDATA - pointer passed to the progress callback
29 argument in the progress callback set with CURLOPT_PROGRESSFUNCTION(3).
38 struct progress {
49 struct progress *memory = clientp;
61 struct progress data;
H A DCURLOPT_XFERINFODATA.md17 CURLOPT_XFERINFODATA - pointer passed to the progress callback
30 argument in the progress callback set with CURLOPT_XFERINFOFUNCTION(3).
41 struct progress {
52 struct progress *memory = clientp;
63 struct progress data;
H A DCURLOPT_NOPROGRESS.md18 CURLOPT_NOPROGRESS - switch off the progress meter
30 If *onoff* is to 1, it tells the library to shut off the progress meter
37 1, meaning it normally runs without a progress meter.
48 /* enable progress meter */
H A DCURLOPT_XFERINFOFUNCTION.md16 CURLOPT_XFERINFOFUNCTION - progress meter callback
59 to continue executing the default progress function.
73 By default, libcurl has an internal progress meter. That is rarely wanted by
79 struct progress {
90 struct progress *memory = clientp;
102 struct progress data;
107 /* enable progress callback getting called */
H A DCURLOPT_PROGRESSFUNCTION.md17 CURLOPT_PROGRESSFUNCTION - progress meter callback
63 to continue executing the default progress function.
77 By default, libcurl has an internal progress meter. That is rarely wanted by
83 struct progress {
94 struct progress *memory = clientp;
104 struct progress data;
H A DCURLOPT_IGNORE_CONTENT_LENGTH.md35 curl cannot accurately report progress, and it instead stops the download when
39 transfer is in progress which otherwise unconditionally causes libcurl to
/curl/tests/data/
H A Dtest114835 progress-bar
56 # Check that the progress finished at 100% and has the right bar width.
H A Dtest59970 # encoded page, the first size would still be used in the progress callback
72 HTTP GET with progress callback and redirects changing content sizes
H A Dtest151329 return failure immediately from progress callback
H A Dtest127837 http://%HOSTIP:%HTTPPORT/%TESTNUMBER --no-progress-meter -o %LOGDIR/out%TESTNUMBER --no-remote-name…
/curl/.github/workflows/
H A Dshellcheck.yml17 cancel-in-progress: true
H A Dreuse.yml19 cancel-in-progress: true
H A Dfuzz.yml44 cancel-in-progress: true

Completed in 47 milliseconds

1234