Home | History | Annotate | Download | only in lib

Lines Matching refs:fullsize

985   size_t fullsize = size * nitems;
994 if(http->postsize <= (curl_off_t)fullsize) {
996 fullsize = (size_t)http->postsize;
1012 return fullsize;
1015 memcpy(buffer, http->postdata, fullsize);
1016 http->postdata += fullsize;
1017 http->postsize -= fullsize;
1019 return fullsize;