Searched refs:pbuf_header (Results 1 – 12 of 12) sorted by relevance
/third_party/lwip/test/unit/tcp/ |
D | tcp_helper.c | 80 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()
|
D | test_tcp.c | 409 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/ |
D | usb_eth_drv.c | 147 (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()
|
D | usb_ethernet.c | 536 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()
|
D | if_axge.c | 495 if (pbuf_header(m, -ETH_PAD_SIZE)) { in axge_rxeof() 507 if (pbuf_header(m, ETH_PAD_SIZE)) { in axge_rxeof()
|
D | if_urndis.c | 811 if (pbuf_header(m, -ETH_PAD_SIZE)) { in urndis_bulk_read() 823 if (pbuf_header(m, ETH_PAD_SIZE)) { in urndis_bulk_read()
|
D | if_axe.c | 875 if (pbuf_header(m, -ETH_PAD_SIZE)) { in axe_rxeof() 887 if (pbuf_header(m, ETH_PAD_SIZE)) { in axe_rxeof()
|
D | if_cdce.c | 1409 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/ |
D | f_ether.c | 244 (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/ |
D | pbuf.h | 286 u8_t pbuf_header(struct pbuf *p, s16_t header_size);
|
/third_party/lwip/src/core/ |
D | pbuf.c | 646 pbuf_header(struct pbuf *p, s16_t header_size_increment) in pbuf_header() function
|
/third_party/lwip/ |
D | CHANGELOG | 128 * 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()
|