Lines Matching refs:resp
340 hyper_response *resp = NULL; in Curl_hyper_stream() local
438 resp = hyper_task_value(task); in Curl_hyper_stream()
442 if(!resp) { in Curl_hyper_stream()
448 http_status = hyper_response_status(resp); in Curl_hyper_stream()
449 http_version = hyper_response_version(resp); in Curl_hyper_stream()
450 reasonp = hyper_response_reason_phrase(resp); in Curl_hyper_stream()
451 reason_len = hyper_response_reason_phrase_len(resp); in Curl_hyper_stream()
465 headers = hyper_response_headers(resp); in Curl_hyper_stream()
508 resp_body = hyper_response_body(resp); in Curl_hyper_stream()
527 hyper_response_free(resp); in Curl_hyper_stream()
528 resp = NULL; in Curl_hyper_stream()
542 if(resp) in Curl_hyper_stream()
543 hyper_response_free(resp); in Curl_hyper_stream()
777 static void http1xx_cb(void *arg, struct hyper_response *resp) in http1xx_cb() argument
789 http_status = hyper_response_status(resp); in http1xx_cb()
790 http_version = hyper_response_version(resp); in http1xx_cb()
791 reasonp = hyper_response_reason_phrase(resp); in http1xx_cb()
792 reason_len = hyper_response_reason_phrase_len(resp); in http1xx_cb()
797 headers = hyper_response_headers(resp); in http1xx_cb()