Lines Matching refs:send_buf_pos
67 size_t send_buf_max_len, size_t *send_buf_pos, in http_send_data() argument
73 int ret, end_of_send = *send_buf_pos; in http_send_data()
131 *send_buf_pos = end_of_send; in http_send_data()
561 size_t send_buf_pos = 0; in http_client_req() local
584 ret = http_send_data(sock, send_buf, send_buf_max_len, &send_buf_pos, in http_client_req()
596 &send_buf_pos, req_end_timepoint, "Host", ": ", req->host, in http_client_req()
606 &send_buf_pos, req_end_timepoint, "Host", ": ", req->host, in http_client_req()
617 ret = http_flush_data(sock, send_buf, send_buf_pos, req_end_timepoint); in http_client_req()
622 send_buf_pos = 0; in http_client_req()
635 &send_buf_pos, req_end_timepoint, in http_client_req()
647 &send_buf_pos, req_end_timepoint, req->header_fields[i], in http_client_req()
658 &send_buf_pos, req_end_timepoint, "Content-Type", ": ", in http_client_req()
679 &send_buf_pos, req_end_timepoint, in http_client_req()
685 &send_buf_pos, req_end_timepoint, HTTP_CRLF, NULL); in http_client_req()
694 ret = http_flush_data(sock, send_buf, send_buf_pos, req_end_timepoint); in http_client_req()
699 send_buf_pos = 0; in http_client_req()
727 &send_buf_pos, req_end_timepoint, HTTP_CRLF, NULL); in http_client_req()
735 if (send_buf_pos > 0) { in http_client_req()
736 ret = http_flush_data(sock, send_buf, send_buf_pos, req_end_timepoint); in http_client_req()