Searched refs:totalsize (Results 1 – 6 of 6) sorted by relevance
/curl/lib/ |
H A D | curl_range.c | 68 curl_off_t totalsize; in Curl_range() local 74 totalsize = to - from; in Curl_range() 75 if(totalsize == CURL_OFF_T_MAX) in Curl_range() 78 data->req.maxdownload = totalsize + 1; /* include last byte */ in Curl_range()
|
/curl/tests/libtest/ |
H A D | lib1533.c | 60 size_t totalsize = nitems * size; in read_callback() local 63 if(bytes_to_send > totalsize) { in read_callback() 64 bytes_to_send = totalsize; in read_callback() 83 size_t totalsize = nmemb * size; in write_callback() local 97 return totalsize; in write_callback()
|
H A D | lib1948.c | 36 size_t totalsize = size * nmemb; in put_callback() local 37 size_t tocopy = (putdata->len < totalsize) ? putdata->len : totalsize; in put_callback()
|
/curl/tests/server/ |
H A D | rtspd.c | 122 static void storerequest(char *reqbuf, size_t totalsize); 597 static void storerequest(char *reqbuf, size_t totalsize) in storerequest() argument 610 if(totalsize == 0) in storerequest() 623 writeleft = totalsize; in storerequest() 625 written = fwrite(&reqbuf[totalsize-writeleft], in storerequest() 634 logmsg("Wrote request (%zu bytes) input to %s", totalsize, dumpfile); in storerequest() 639 totalsize-writeleft, totalsize, dumpfile); in storerequest()
|
H A D | sws.c | 136 static void storerequest(const char *reqbuf, size_t totalsize); 787 static void storerequest(const char *reqbuf, size_t totalsize) in storerequest() argument 801 if(totalsize == 0) in storerequest() 814 writeleft = totalsize; in storerequest() 816 written = fwrite(&reqbuf[totalsize-writeleft], in storerequest() 825 logmsg("Wrote request (%zu bytes) input to %s", totalsize, dumpfile); in storerequest() 830 totalsize-writeleft, totalsize, dumpfile); in storerequest()
|
/curl/tests/http/clients/ |
H A D | h2-pausing.c | 174 curl_off_t totalsize; in cb() local 178 &totalsize) == CURLE_OK) in cb() 180 "\n", handle->idx, totalsize); in cb()
|
Completed in 16 milliseconds