/curl/tests/libtest/ |
H A D | lib599.c | 29 double dlnow, double ultotal, double ulnow) in progress_callback() argument 35 if((dltotal > 0.0) && (dlnow > dltotal)) { in progress_callback() 37 printf("%.0f > %.0f !!\n", dltotal, dlnow); in progress_callback()
|
H A D | lib1513.c | 37 double dlnow, in progressKiller() argument 43 (void)dlnow; in progressKiller()
|
H A D | lib1555.c | 36 double dlnow, in progressCallback() argument 45 (void)dlnow; in progressCallback()
|
H A D | lib578.c | 33 static int progress_callback(void *clientp, double dltotal, double dlnow, in progress_callback() argument 40 (void)dlnow; /* UNUSED */ in progress_callback()
|
H A D | lib1553.c | 34 curl_off_t dltotal, curl_off_t dlnow, in xferinfo() argument 38 (void)dlnow; in xferinfo()
|
H A D | lib1540.c | 40 curl_off_t dlnow, in please_continue() argument 46 (void)dlnow; in please_continue()
|
H A D | lib579.c | 53 static int progress_callback(void *clientp, double dltotal, double dlnow, in progress_callback() argument 58 (void)dlnow; /* UNUSED */ in progress_callback()
|
H A D | lib670.c | 69 static int xferinfo(void *clientp, curl_off_t dltotal, curl_off_t dlnow, in xferinfo() argument 75 (void) dlnow; in xferinfo()
|
/curl/docs/examples/ |
H A D | progressfunc.c | 42 curl_off_t dltotal, curl_off_t dlnow, in xferinfo() argument 63 (unsigned long)dlnow, (unsigned long)dltotal); in xferinfo() 65 if(dlnow > STOP_DOWNLOAD_AFTER_THIS_MANY_BYTES) in xferinfo()
|
H A D | ghiper.c | 285 static int prog_cb(void *p, double dltotal, double dlnow, double ult, in prog_cb() argument 289 MSG_OUT("Progress: %s (%g/%g)\n", conn->url, dlnow, dltotal); in prog_cb()
|
H A D | hiperfifo.c | 318 static int prog_cb(void *p, double dltotal, double dlnow, double ult, in prog_cb() argument 325 fprintf(MSG_OUT, "Progress: %s (%g/%g)\n", conn->url, dlnow, dltotal); in prog_cb()
|
H A D | evhiperfifo.c | 322 static int prog_cb(void *p, double dltotal, double dlnow, double ult, in prog_cb() argument 329 fprintf(MSG_OUT, "Progress: %s (%g/%g)\n", conn->url, dlnow, dltotal); in prog_cb()
|
/curl/src/ |
H A D | tool_cb_prg.c | 133 curl_off_t dltotal, curl_off_t dlnow, in tool_progress_cb() argument 160 point = dlnow + ulnow; in tool_progress_cb() 164 else if((CURL_OFF_T_MAX - bar->initial_size) < (dlnow + ulnow)) in tool_progress_cb() 167 point = dlnow + ulnow + bar->initial_size; in tool_progress_cb()
|
H A D | tool_progress.c | 83 curl_off_t dlnow, in xferinfo_cb() argument 90 per->dlnow = dlnow; in xferinfo_cb() 199 all_dlnow += per->dlnow; in progress_meter() 309 all_dlalready += per->dlnow; in progress_finalize()
|
H A D | tool_cb_rea.h | 39 curl_off_t dltotal, curl_off_t dlnow,
|
H A D | tool_progress.h | 30 curl_off_t dlnow,
|
H A D | tool_cb_prg.h | 53 curl_off_t dltotal, curl_off_t dlnow,
|
H A D | tool_cb_rea.c | 114 curl_off_t dltotal, curl_off_t dlnow, in tool_readbusy_cb() argument 121 (void)dlnow; /* unused */ in tool_readbusy_cb()
|
H A D | tool_operate.h | 59 curl_off_t dlnow; member
|
/curl/docs/libcurl/opts/ |
H A D | CURLOPT_PROGRESSFUNCTION.md | 27 double dlnow, 53 libcurl expects to download in this transfer. *dlnow* is the number of 94 double dlnow,
|
H A D | CURLOPT_XFERINFOFUNCTION.md | 26 curl_off_t dlnow, 49 bytes libcurl expects to download in this transfer. *dlnow* is the number 90 curl_off_t dlnow,
|
H A D | CURLOPT_PROGRESSDATA.md | 48 double dlnow,
|
H A D | CURLOPT_XFERINFODATA.md | 51 curl_off_t dlnow,
|
/curl/tests/http/clients/ |
H A D | upload-pausing.c | 163 curl_off_t dlnow, in progress_callback() argument 168 (void)dlnow; in progress_callback()
|
H A D | hx-download.c | 215 curl_off_t dltotal, curl_off_t dlnow, in my_progress_cb() argument 222 if(t->abort_at > 0 && dlnow >= t->abort_at) { in my_progress_cb() 224 t->idx, (long)dlnow); in my_progress_cb()
|