Searched refs:lwip_strnstr (Results 1 – 3 of 3) sorted by relevance
/third_party/lwip/src/core/ |
D | def.c | 98 #ifndef lwip_strnstr 105 lwip_strnstr(const char *buffer, const char *token, size_t n) in lwip_strnstr() function
|
/third_party/lwip/src/include/lwip/ |
D | def.h | 143 #ifndef lwip_strnstr 145 char* lwip_strnstr(const char* buffer, const char* token, size_t n);
|
/third_party/lwip/src/apps/http/ |
D | httpd.c | 1806 char *crlfcrlf = lwip_strnstr(uri_end + 1, CRLF CRLF, data_len - (uri_end + 1 - data)); 1813 char *scontent_len = lwip_strnstr(uri_end + 1, HTTP_HDR_CONTENT_LEN, crlfcrlf - (uri_end + 1)); 1815 …char *scontent_len_end = lwip_strnstr(scontent_len + HTTP_HDR_CONTENT_LEN_LEN, CRLF, HTTP_HDR_CONT… 2027 crlf = lwip_strnstr(data, CRLF, data_len); 2059 sp2 = lwip_strnstr(sp1 + 1, " ", left_len); 2063 sp2 = lwip_strnstr(sp1 + 1, CRLF, left_len); 2076 if (lwip_strnstr(data, CRLF CRLF, data_len) != NULL) { 2081 if (!is_09 && (lwip_strnstr(data, HTTP11_CONNECTIONKEEPALIVE, data_len) || 2082 lwip_strnstr(data, HTTP11_CONNECTIONKEEPALIVE2, data_len))) { 2394 char *file_start = lwip_strnstr(hs->file, CRLF CRLF, hs->left);
|