Home
last modified time | relevance | path

Searched refs:sendsize (Results 1 – 4 of 4) sorted by relevance

/third_party/curl/lib/
Dpingpong.c181 DEBUGASSERT(pp->sendsize == 0); in Curl_pp_vsendf()
225 pp->sendsize = write_len; in Curl_pp_vsendf()
230 pp->sendleft = pp->sendsize = 0; in Curl_pp_vsendf()
480 CURLcode result = Curl_write(data, sock, pp->sendthis + pp->sendsize - in Curl_pp_flushsend()
491 pp->sendleft = pp->sendsize = 0; in Curl_pp_flushsend()
Dpingpong.h59 size_t sendsize; /* total size of the sendthis buffer */ member
Dhttp.c1248 size_t sendsize; in Curl_buffer_send() local
1288 sendsize = size - (size_t)overflow; in Curl_buffer_send()
1291 sendsize = size; in Curl_buffer_send()
1310 if(sendsize > (size_t)data->set.upload_buffer_size) in Curl_buffer_send()
1311 sendsize = (size_t)data->set.upload_buffer_size; in Curl_buffer_send()
1313 memcpy(data->state.ulbuf, ptr, sendsize); in Curl_buffer_send()
1325 sendsize = CURLMIN(size, altsize); in Curl_buffer_send()
1327 sendsize = size; in Curl_buffer_send()
1339 sendsize = size - (size_t)overflow; in Curl_buffer_send()
1342 sendsize = size; in Curl_buffer_send()
[all …]
Dsmtp.c1426 pp->sendsize = len; in smtp_done()