HomeSort by relevance Sort by last modified time
    Searched refs:postsize (Results 1 - 3 of 3) sorted by null

  /external/curl/lib/
http.c 412 expectsend = http->postsize;
987 if(!http->postsize)
994 if(http->postsize <= (curl_off_t)fullsize) {
995 memcpy(buffer, http->postdata, (size_t)http->postsize);
996 fullsize = (size_t)http->postsize;
998 if(http->backup.postsize) {
1001 http->postsize = http->backup.postsize;
1007 http->backup.postsize = 0;
1010 http->postsize = 0
1774 curl_off_t postsize = 0; \/* curl_off_t to handle large file sizes *\/ local
    [all...]
http.h 132 curl_off_t postsize; /* off_t to handle large file sizes */ member in struct:HTTP
147 curl_off_t postsize; member in struct:HTTP::back
rtsp.c 258 curl_off_t postsize = 0; /* for ANNOUNCE and SET_PARAMETER */ local
536 postsize = (data->state.infilesize != -1)?
542 if(putsize > 0 || postsize > 0) {
548 (data->set.upload ? putsize : postsize));
588 if(postsize > 0) {
590 (size_t)postsize);

Completed in 69 milliseconds