Lines Matching refs:lresp
924 http_respinfo_t *lresp; in http_process_headers() local
934 if ((lresp = malloc(sizeof (http_respinfo_t))) == NULL) { in http_process_headers()
939 bzero(lresp, sizeof (http_respinfo_t)); in http_process_headers()
949 *resp = lresp; in http_process_headers()
959 http_free_respinfo(lresp); in http_process_headers()
971 http_free_respinfo(lresp); in http_process_headers()
986 http_free_respinfo(lresp); in http_process_headers()
1000 http_free_respinfo(lresp); in http_process_headers()
1012 http_free_respinfo(lresp); in http_process_headers()
1039 http_free_respinfo(lresp); in http_process_headers()
1059 http_free_respinfo(lresp); in http_process_headers()
1065 lresp->code = c_id->resp.code; in http_process_headers()
1066 lresp->nresphdrs = c_id->resp.nresphdrs; in http_process_headers()
1067 lresp->statusmsg = strdup(c_id->resp.statusmsg); in http_process_headers()
1068 if (lresp->statusmsg == NULL) { in http_process_headers()
1069 http_free_respinfo(lresp); in http_process_headers()
1073 *resp = lresp; in http_process_headers()