Home
last modified time | relevance | path

Searched refs:pbuf_memfind (Results 1 - 6 of 6) sorted by relevance

/third_party/lwip/src/apps/http/
H A Dhttp_client.c209 u16_t end1 = pbuf_memfind(p, "\r\n", 2, 0); in http_parse_response_status()
213 space1 = pbuf_memfind(p, " ", 1, 0); in http_parse_response_status()
225 space2 = pbuf_memfind(p, " ", 1, space1 + 1); in http_parse_response_status()
250 u16_t end1 = pbuf_memfind(p, "\r\n\r\n", 4, 0); in http_wait_headers()
258 content_len_hdr = pbuf_memfind(p, "Content-Length: ", 16, 0); in http_wait_headers()
260 u16_t content_len_line_end = pbuf_memfind(p, "\r\n", 2, content_len_hdr); in http_wait_headers()
H A Daltcp_proxyconnect.c232 u16_t idx = pbuf_memfind(p, "\r\n\r\n", 4, 0); in altcp_proxyconnect_lower_recv()
/third_party/lwip/src/apps/tftp/
H A Dtftp_server.c241 filename_end_offset = pbuf_memfind(p, &tftp_null, sizeof(tftp_null), 2); in recv()
249 mode_end_offset = pbuf_memfind(p, &tftp_null, sizeof(tftp_null), filename_end_offset + 1); in recv()
/third_party/lwip/src/include/lwip/
H A Dpbuf.h319 u16_t pbuf_memfind(const struct pbuf* p, const void* mem, u16_t mem_len, u16_t start_offset);
/third_party/lwip/src/core/
H A Dpbuf.c1510 pbuf_memfind(const struct pbuf *p, const void *mem, u16_t mem_len, u16_t start_offset) in pbuf_memfind() function
1547 return pbuf_memfind(p, substr, (u16_t)substr_len, 0); in pbuf_strstr()
/third_party/lwip/src/apps/smtp/
H A Dsmtp.c1007 crlf = pbuf_memfind(s->p, SMTP_CRLF, SMTP_CRLF_LEN, (u16_t)(offset + 4)); in smtp_is_response_finished()
1062 u16_t crlf = pbuf_memfind(s->p, SMTP_CRLF, SMTP_CRLF_LEN, auth); in smtp_prepare_auth_or_mail()

Completed in 8 milliseconds