Searched refs:total (Results 1 – 25 of 83) sorted by relevance
1234
/curl/src/ |
H A D | tool_cb_prg.c | 140 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 D | CURLINFO_TOTAL_TIME_T.md | 18 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 D | CURLINFO_TOTAL_TIME.md | 19 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 D | CURLINFO_HEADER_SIZE.md | 31 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 D | CURLOPT_HSTSWRITEFUNCTION.md | 35 size_t total; /* total number of entries to save */
|
H A D | CURLINFO_REDIRECT_COUNT.md | 32 Pass a pointer to a long to receive the total number of redirections that were
|
H A D | CURLINFO_SIZE_UPLOAD_T.md | 32 Pass a pointer to a *curl_off_t* to receive the total amount of bytes that
|
/curl/tests/libtest/ |
H A D | lib553.c | 37 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 D | delta | 97 $total=$now - `date -d 19980320 +%s`; 145 $days, $total / 3600 / 24;
|
/curl/tests/ |
H A D | runtests.pl | 1802 my ($testnum, $count, $total, $errorreturncode)=@_; 1805 my $esttotal = $sofar/$count * $total; 1815 $count, $total, $timeleft, $took, $duration); 1839 my ($runnerid, $testnum, $count, $total)=@_; 2882 my $total=0; 3018 $total++; # number of tests we've run 3114 my $all = $total + $numskipped; 3181 if($total) { 3196 $ok/$total*100); 3198 if($failed && ($ok != $total)) { [all …]
|
/curl/tests/data/ |
H A D | test521 | 13 total 20
|
H A D | test1047 | 15 total 20
|
H A D | test350 | 13 total 20
|
H A D | test352 | 13 total 20
|
H A D | test353 | 13 total 20
|
H A D | test100 | 13 total 20
|
H A D | test252 | 14 total 20
|
H A D | test351 | 13 total 20
|
H A D | test706 | 15 total 20
|
H A D | test707 | 15 total 20
|
H A D | test1048 | 17 total 20
|
H A D | test253 | 14 total 20
|
H A D | test254 | 15 total 20
|
H A D | test400 | 14 total 20
|
/curl/docs/examples/ |
H A D | hsts-preload.c | 75 printf("[%u/%u] %s %s\n", (unsigned int)i->index, (unsigned int)i->total, in hstswrite()
|
Completed in 62 milliseconds
1234