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

  /external/curl/lib/
http.c 423 expectsend = http->postsize;
996 if(!http->postsize)
1003 if(http->postsize <= (curl_off_t)fullsize) {
1004 memcpy(buffer, http->postdata, (size_t)http->postsize);
1005 fullsize = (size_t)http->postsize;
1007 if(http->backup.postsize) {
1010 http->postsize = http->backup.postsize;
1016 http->backup.postsize=0;
1019 http->postsize = 0
1746 curl_off_t postsize = 0; \/* curl_off_t to handle large file sizes *\/ local
    [all...]
http.h 129 curl_off_t postsize; /* off_t to handle large file sizes */ member in struct:HTTP
144 curl_off_t postsize; member in struct:HTTP::back
rtsp.c 240 curl_off_t postsize = 0; /* for ANNOUNCE and SET_PARAMETER */ local
518 postsize = (data->state.infilesize != -1)?
524 if(putsize > 0 || postsize > 0) {
530 (data->set.upload ? putsize : postsize));
570 if(postsize > 0) {
572 (size_t)postsize);

Completed in 82 milliseconds