Lines Matching defs:req
251 struct pbuf *req;
503 if (hs->req) {
504 pbuf_free(hs->req);
505 hs->req = NULL;
1999 if (hs->req == NULL) {
2001 hs->req = p;
2004 pbuf_cat(hs->req, p);
2007 keep it on the req list */
2010 if (hs->req->next != NULL) {
2011 data_len = LWIP_MIN(hs->req->tot_len, LWIP_HTTPD_MAX_REQ_LENGTH);
2012 pbuf_copy_partial(hs->req, httpd_req_buf, data_len, 0);
2096 struct pbuf *q = hs->req;
2124 clen = pbuf_clen(hs->req);
2125 if ((hs->req->tot_len <= LWIP_HTTPD_REQ_BUFSIZE) &&
2585 if (hs->req != NULL) {
2586 pbuf_free(hs->req);
2587 hs->req = NULL;