Home
last modified time | relevance | path

Searched refs:total (Results 1 – 25 of 82) sorted by relevance

1234

/curl/src/
H A Dtool_cb_prg.c140 curl_off_t total; in tool_progress_cb() local
147 total = dltotal + ultotal; in tool_progress_cb()
149 total = CURL_OFF_T_MAX; in tool_progress_cb()
152 total = CURL_OFF_T_MAX; in tool_progress_cb()
154 total = dltotal + ultotal + bar->initial_size; in tool_progress_cb()
171 if(total) { in tool_progress_cb()
176 else if((tvdiff(now, bar->prevtime) < 100L) && point < total) in tool_progress_cb()
194 if((total > 0) && (point != bar->prev)) { in tool_progress_cb()
201 if(point > total) in tool_progress_cb()
203 total = point; in tool_progress_cb()
[all …]
/curl/docs/libcurl/opts/
H A DCURLINFO_TOTAL_TIME_T.md18 CURLINFO_TOTAL_TIME_T - get total time of previous transfer in microseconds
31 Pass a pointer to a curl_off_t to receive the total time in microseconds
49 curl_off_t total;
53 res = curl_easy_getinfo(curl, CURLINFO_TOTAL_TIME_T, &total);
55 printf("Time: %" CURL_FORMAT_CURL_OFF_T ".%06ld", total / 1000000,
56 (long)(total % 1000000));
H A DCURLINFO_TOTAL_TIME.md19 CURLINFO_TOTAL_TIME - get total time of previous transfer
31 Pass a pointer to a double to receive the total time in seconds for the
49 double total;
53 res = curl_easy_getinfo(curl, CURLINFO_TOTAL_TIME, &total);
55 printf("Time: %.1f", total);
H A DCURLINFO_HEADER_SIZE.md31 Pass a pointer to a long to receive the total size of all the headers
34 The total includes the size of any received headers suppressed by
H A DCURLOPT_HSTSWRITEFUNCTION.md35 size_t total; /* total number of entries to save */
H A DCURLINFO_REDIRECT_COUNT.md32 Pass a pointer to a long to receive the total number of redirections that were
H A DCURLINFO_SIZE_UPLOAD_T.md32 Pass a pointer to a *curl_off_t* to receive the total amount of bytes that
/curl/tests/libtest/
H A Dlib553.c37 static size_t total = POSTLEN; in myreadfunc() local
44 if(size > total) in myreadfunc()
45 size = total; in myreadfunc()
51 total -= size; in myreadfunc()
/curl/scripts/
H A Ddelta97 $total=$now - `date -d 19980320 +%s`;
145 $days, $total / 3600 / 24;
/curl/tests/
H A Druntests.pl1801 my ($testnum, $count, $total, $errorreturncode)=@_;
1804 my $esttotal = $sofar/$count * $total;
1814 $count, $total, $timeleft, $took, $duration);
1838 my ($runnerid, $testnum, $count, $total)=@_;
2876 my $total=0;
3012 $total++; # number of tests we've run
3108 my $all = $total + $numskipped;
3175 if($total) {
3190 $ok/$total*100);
3192 if($failed && ($ok != $total)) {
[all …]
/curl/lib/
H A Dprogress.c477 static curl_off_t pgrs_est_percent(curl_off_t total, curl_off_t cur) in pgrs_est_percent() argument
479 if(total > CURL_OFF_T_C(10000)) in pgrs_est_percent()
480 return cur / (total/CURL_OFF_T_C(100)); in pgrs_est_percent()
481 else if(total > CURL_OFF_T_C(0)) in pgrs_est_percent()
482 return (cur*100) / total; in pgrs_est_percent()
/curl/tests/data/
H A Dtest104715 total 20
H A Dtest52113 total 20
H A Dtest10013 total 20
H A Dtest25214 total 20
H A Dtest35013 total 20
H A Dtest35113 total 20
H A Dtest35213 total 20
H A Dtest35313 total 20
H A Dtest40014 total 20
H A Dtest25314 total 20
H A Dtest25415 total 20
H A Dtest70615 total 20
H A Dtest70715 total 20
/curl/docs/examples/
H A Dhsts-preload.c75 printf("[%u/%u] %s %s\n", (unsigned int)i->index, (unsigned int)i->total, in hstswrite()

Completed in 39 milliseconds

1234