Lines Matching refs:databuf
2833 evhttp_send(struct evhttp_request *req, struct evbuffer *databuf) in evhttp_send() argument
2848 if (databuf != NULL) in evhttp_send()
2849 evbuffer_add_buffer(req->output_buffer, databuf); in evhttp_send()
2859 struct evbuffer *databuf) in evhttp_send_reply() argument
2863 evhttp_send(req, databuf); in evhttp_send_reply()
2894 evhttp_send_reply_chunk_with_cb(struct evhttp_request *req, struct evbuffer *databuf, in evhttp_send_reply_chunk_with_cb() argument
2905 if (evbuffer_get_length(databuf) == 0) in evhttp_send_reply_chunk_with_cb()
2911 (unsigned)evbuffer_get_length(databuf)); in evhttp_send_reply_chunk_with_cb()
2913 evbuffer_add_buffer(output, databuf); in evhttp_send_reply_chunk_with_cb()
2921 evhttp_send_reply_chunk(struct evhttp_request *req, struct evbuffer *databuf) in evhttp_send_reply_chunk() argument
2923 evhttp_send_reply_chunk_with_cb(req, databuf, NULL, NULL); in evhttp_send_reply_chunk()
3062 evhttp_send_page_(struct evhttp_request *req, struct evbuffer *databuf) in evhttp_send_page_() argument
3076 evhttp_send(req, databuf); in evhttp_send_page_()