Home
last modified time | relevance | path

Searched refs:pbuf_header (Results 1 – 12 of 12) sorted by relevance

/third_party/lwip/test/unit/tcp/
Dtcp_helper.c80 pbuf_header(p, -(s16_t)sizeof(struct ip_hdr)); in tcp_create_segment_wnd()
93 pbuf_header(p, -(s16_t)sizeof(struct tcp_hdr)); in tcp_create_segment_wnd()
97 pbuf_header(p, sizeof(struct tcp_hdr)); in tcp_create_segment_wnd()
105 pbuf_header(p, sizeof(struct ip_hdr)); in tcp_create_segment_wnd()
264 pbuf_header(p, -(s16_t)sizeof(struct ip_hdr)); in test_tcp_input()
Dtest_tcp.c409 pbuf_header(p, -(s16_t)sizeof(struct ip_hdr)); in START_TEST()
421 pbuf_header(p, sizeof(struct ip_hdr)); in START_TEST()
/third_party/FreeBSD/sys/dev/usb/net/
Dusb_eth_drv.c147 (void)pbuf_header(p, -ETH_PAD_SIZE); /* drop the padding word */ in eth_drv_recv()
158 (void)pbuf_header(p, ETH_PAD_SIZE); /* reclaim the padding word */ in eth_drv_recv()
Dusb_ethernet.c536 pbuf_header(m_new, -ETH_PAD_SIZE); /* drop the padding word */ in uether_newbuf()
606 pbuf_header(m, ETH_PAD_SIZE); /* drop the padding word */ in uether_rxflush()
Dif_axge.c495 if (pbuf_header(m, -ETH_PAD_SIZE)) { in axge_rxeof()
507 if (pbuf_header(m, ETH_PAD_SIZE)) { in axge_rxeof()
Dif_urndis.c811 if (pbuf_header(m, -ETH_PAD_SIZE)) { in urndis_bulk_read()
823 if (pbuf_header(m, ETH_PAD_SIZE)) { in urndis_bulk_read()
Dif_axe.c875 if (pbuf_header(m, -ETH_PAD_SIZE)) { in axe_rxeof()
887 if (pbuf_header(m, ETH_PAD_SIZE)) { in axe_rxeof()
Dif_cdce.c1409 pbuf_header(m, -ETH_PAD_SIZE); /* drop the padding word */ in cdce_ncm_bulk_read_callback()
1415 pbuf_header(m, ETH_PAD_SIZE); /* drop the padding word */ in cdce_ncm_bulk_read_callback()
/third_party/NuttX/drivers/usbdev/gadget/
Df_ether.c244 (void)pbuf_header(p, -ETH_PAD_SIZE); /* drop the padding word */ in eth_rx()
250 (void)pbuf_header(p, ETH_PAD_SIZE); /* reclaim the padding word */ in eth_rx()
/third_party/lwip/src/include/lwip/
Dpbuf.h286 u8_t pbuf_header(struct pbuf *p, s16_t header_size);
/third_party/lwip/src/core/
Dpbuf.c646 pbuf_header(struct pbuf *p, s16_t header_size_increment) in pbuf_header() function
/third_party/lwip/
DCHANGELOG128 * pbuf: split pbuf_header(s16_t) into pbuf_add_header(size_t) and
906 assert-fail): improved some pbuf_header calls to not assert-fail.
3776 * Fix all uses of pbuf_header to check the return value. In some
3795 * udp.c: Only try and use pbuf_header() to make space for headers if
3885 outside the region of the pbuf by pbuf_header()