Lines Matching defs:body
437 /* hyper doesn't always call the body write callback */
522 failf(data, "hyperstream: couldn't get response body");
528 failf(data, "hyperstream: body foreach failed");
534 failf(data, "Couldn't hyper_executor_push the body-foreach");
685 don't know exactly when the body is sent */
747 don't know exactly when the body is sent */
756 * sends a body
769 Curl_pgrsSetUploadSize(data, 0); /* no request body */
771 hyper_body *body;
780 body = hyper_body_new();
781 hyper_body_set_userdata(body, data);
783 hyper_body_set_data_func(body, uploadpostfields);
787 hyper_body_free(body);
792 hyper_body_set_data_func(body, uploadstreamed);
794 if(HYPERE_OK != hyper_request_set_body(hyperreq, body)) {