Home
last modified time | relevance | path

Searched refs:pbuf_memfind (Results 1 – 7 of 7) sorted by relevance

/btstack/3rd-party/lwip/core/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()
/btstack/3rd-party/lwip/core/src/apps/tftp/
H A Dtftp.c285 filename_end_offset = pbuf_memfind(p, &tftp_null, sizeof(tftp_null), 2); in recv()
293 mode_end_offset = pbuf_memfind(p, &tftp_null, sizeof(tftp_null), filename_end_offset + 1); in recv()
/btstack/3rd-party/lwip/core/src/include/lwip/
H A Dpbuf.h318 u16_t pbuf_memfind(const struct pbuf* p, const void* mem, u16_t mem_len, u16_t start_offset);
/btstack/3rd-party/lwip/core/src/core/
H A Dpbuf.c1476 pbuf_memfind(const struct pbuf *p, const void *mem, u16_t mem_len, u16_t start_offset) in pbuf_memfind() function
1513 return pbuf_memfind(p, substr, (u16_t)substr_len, 0); in pbuf_strstr()
/btstack/3rd-party/lwip/core/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()
/btstack/3rd-party/lwip/core/
H A DCHANGELOG1073 * pbuf.c: fixed bug #39356 Wrong increment in pbuf_memfind()