Home
last modified time | relevance | path

Searched refs:bodylen (Results 1 – 8 of 8) sorted by relevance

/third_party/nghttp2/src/
Dshrpx_mruby_module_response.cc221 size_t bodylen = 0; in response_return() local
229 bodylen = vallen; in response_return()
266 rv = upstream->send_reply(downstream, body, bodylen); in response_return()
Dshrpx_upstream.h74 size_t bodylen) = 0;
Dshrpx_https_upstream.h80 size_t bodylen);
Dshrpx_http2_upstream.h85 size_t bodylen);
Dshrpx_https_upstream.cc916 size_t bodylen) { in send_reply() argument
981 output->append(body, bodylen); in send_reply()
983 downstream->response_sent_body_length += bodylen; in send_reply()
Dshrpx_http2_upstream.cc1498 size_t bodylen) { in send_reply() argument
1503 if (bodylen) { in send_reply()
1558 buf->append(body, bodylen); in send_reply()
/third_party/ejdb/src/jbr/
Djbr.c86 static iwrc _jbr_http_send(http_s *r, int status, const char *ctype, const char *body, int bodylen)… in _jbr_http_send() argument
95 if (http_send_body(r, (char*) body, bodylen)) { in _jbr_http_send()
106 …rc _jbr_http_error_send2(http_s *r, int status, const char *ctype, const char *body, int bodylen) { in _jbr_http_error_send2() argument
107 return _jbr_http_send(r, status, ctype, body, bodylen); in _jbr_http_error_send2()
/third_party/curl/lib/
Dhttp.c1356 size_t bodylen = amount - headlen; in Curl_buffer_send() local
1360 if(bodylen) in Curl_buffer_send()
1363 Curl_debug(data, CURLINFO_DATA_OUT, ptr + headlen, bodylen); in Curl_buffer_send()
1373 data->req.writebytecount += bodylen; in Curl_buffer_send()