Home
last modified time | relevance | path

Searched refs:pbuf_memcmp (Results 1 – 5 of 5) sorted by relevance

/third_party/lwip/src/include/lwip/
Dpbuf.h318 u16_t pbuf_memcmp(const struct pbuf* p, u16_t offset, const void* s2, u16_t n);
/third_party/lwip/src/core/
Dpbuf.c1468 pbuf_memcmp(const struct pbuf *p, u16_t offset, const void *s2, u16_t n) in pbuf_memcmp() function
1516 u16_t plus = pbuf_memcmp(p, i, mem, mem_len); in pbuf_memfind()
/third_party/lwip/src/apps/mdns/
Dmdns.c1674 pbuf_memcmp(pkt->pbuf, ans.rd_offset, netif_ip4_addr(pkt->netif), ans.rd_length) == 0) { in mdns_handle_question()
1683pbuf_memcmp(pkt->pbuf, ans.rd_offset, netif_ip6_addr(pkt->netif, 0), ans.rd_length) == 0) { in mdns_handle_question()
1759 pbuf_memcmp(pkt->pbuf, ans.rd_offset, service->txtdata.name, ans.rd_length) == 0) { in mdns_handle_question()
/third_party/lwip/src/apps/lwiperf/
Dlwiperf.c513 if (pbuf_memcmp(p, 0, &conn->settings, sizeof(lwiperf_settings_t)) != 0) { in lwiperf_tcp_recv()
/third_party/lwip/src/apps/http/
Dhttp_client.c215 if ((pbuf_memcmp(p, 0, "HTTP/", 5) == 0) && (pbuf_get_at(p, 6) == '.')) { in http_parse_response_status()