Lines Matching refs:eos
1057 const char *buf, size_t blen, bool eos) in h2_xfer_write_resp_hd() argument
1062 stream->xfer_result = Curl_xfer_write_resp_hd(data, buf, blen, eos); in h2_xfer_write_resp_hd()
1063 if(!stream->xfer_result && !eos) in h2_xfer_write_resp_hd()
1074 const char *buf, size_t blen, bool eos) in h2_xfer_write_resp() argument
1079 stream->xfer_result = Curl_xfer_write_resp(data, buf, blen, eos); in h2_xfer_write_resp()
1080 if(!stream->xfer_result && !eos) in h2_xfer_write_resp()
2113 const void *buf, size_t blen, bool eos, in cf_h2_body_send() argument
2128 if(eos) in cf_h2_body_send()
2143 if(eos && (blen == (size_t)nwritten)) in cf_h2_body_send()
2146 if(eos || !Curl_bufq_is_empty(&stream->sendbuf)) { in cf_h2_body_send()
2160 bool eos, CURLcode *err) in h2_submit() argument
2258 if(bodylen || eos) { in h2_submit()
2259 ssize_t n = cf_h2_body_send(cf, data, stream, body, bodylen, eos, err); in h2_submit()
2281 const void *buf, size_t len, bool eos, in cf_h2_send() argument
2293 nwritten = h2_submit(&stream, cf, data, buf, len, eos, err); in cf_h2_send()
2304 DEBUGASSERT(eos); in cf_h2_send()
2305 nwritten = cf_h2_body_send(cf, data, stream, buf, 0, eos, err); in cf_h2_send()
2307 stream->id, nwritten, *err, eos); in cf_h2_send()
2314 nwritten = cf_h2_body_send(cf, data, stream, buf, len, eos, err); in cf_h2_send()
2316 stream->id, len, nwritten, *err, eos); in cf_h2_send()