Lines Matching defs:size
132 static size_t trailers_read(char *buffer, size_t size, size_t nitems,
139 size_t to_copy = (size*nitems < bytes_left) ? size*nitems : bytes_left;
209 a chunk size so we skip this */
434 * and we know the size of the BODY data, limit the read amount */
435 if(!eos_reliable && !data->req.header && data->req.size != -1) {
436 curl_off_t totalleft = data->req.size - data->req.bytecount;
772 k->upload_present, /* buffer size */
793 nbody = bytes_written - n; /* size of the written body part */
983 if(k->size != -1) {
988 k->bytecount, k->size);
1006 if(!(data->req.no_body) && (k->size != -1) &&
1007 (k->bytecount != k->size) &&
1013 (k->bytecount != (k->size + data->state.crlf_conversions)) &&
1017 " bytes remaining to read", k->size - k->bytecount);
1091 after the *_setopt() calls (that could specify the size of the cache) but
1595 curl_off_t size, /* -1 if unknown at this point */
1630 k->size = size;
1638 if(size > 0)
1639 Curl_pgrsSetDownloadSize(data, size);