/vbox/src/VBox/Devices/Network/lwip-new/src/netif/ |
H A D | ethernetif.c | 132 pbuf_header(p, -ETH_PAD_SIZE); /* drop the padding word */ 145 pbuf_header(p, ETH_PAD_SIZE); /* reclaim the padding word */ 182 pbuf_header(p, -ETH_PAD_SIZE); /* drop the padding word */ 201 pbuf_header(p, ETH_PAD_SIZE); /* reclaim the padding word */
|
/vbox/src/VBox/Devices/Network/lwip/src/netif/ |
H A D | ethernetif.c | 105 pbuf_header(p, -ETH_PAD_SIZE); /* drop the padding word */ 118 pbuf_header(p, ETH_PAD_SIZE); /* reclaim the padding word */ 157 pbuf_header(p, -ETH_PAD_SIZE); /* drop the padding word */ 171 pbuf_header(p, ETH_PAD_SIZE); /* reclaim the padding word */ 249 pbuf_header(p, -sizeof(struct eth_hdr));
|
/vbox/src/VBox/Devices/Network/lwip-new/src/core/ipv4/ |
H A D | icmp.c | 158 if (pbuf_header(p, (PBUF_IP_HLEN + PBUF_LINK_HLEN))) { 164 if (pbuf_header(p, hlen)) { 183 if (pbuf_header(r, -hlen)) { 193 if (pbuf_header(p, -(s16_t)(PBUF_IP_HLEN + PBUF_LINK_HLEN))) { 230 if(pbuf_header(p, hlen)) {
|
H A D | ip4.c | 619 pbuf_header(p, -iphdr_hlen); /* Move to payload, no check necessary. */ 657 pbuf_header(p, -iphdr_hlen); /* Move to payload, no check necessary. */ 691 pbuf_header(p, iphdr_hlen); /* Move to ip header, no check necessary. */ 786 if (pbuf_header(p, optlen_aligned)) { 805 if (pbuf_header(p, IP_HLEN)) {
|
H A D | ip_frag.c | 592 pbuf_header(r, -IP_HLEN); 755 if(pbuf_header(rambuf, IP_HLEN)) { 834 * free it.A PBUF_ROM style pbuf for which pbuf_header
|
/vbox/src/VBox/Devices/Network/lwip-new/src/core/ipv6/ |
H A D | ethip6.c | 142 if (pbuf_header(q, sizeof(struct eth_hdr)) != 0) { 189 pbuf_header(q, -(s16_t)SIZEOF_ETH_HDR);
|
H A D | ip6.c | 610 pbuf_header(p, -IP6_HLEN); 637 pbuf_header(p, -hlen); 660 pbuf_header(p, -hlen); 683 pbuf_header(p, -hlen); 718 pbuf_header(p, -hlen); 735 pbuf_header(p, -IP6_HLEN); 756 pbuf_header(p, ip_data.current_ip_header_tot_len); 775 pbuf_header(p, -ip_data.current_ip_header_tot_len); 783 pbuf_header(p, -ip_data.current_ip_header_tot_len); 791 pbuf_header( [all...] |
H A D | ip6_frag.c | 146 if (pbuf_header(p, (u8_t *)p->payload - (u8_t *)ipr->iphdr0) == 0) { 444 pbuf_header(iprh->p, -IP6_FRAG_HLEN); 476 if (pbuf_header(p, unfrag_len) != 0) {
|
/vbox/src/VBox/Devices/Network/lwip/src/include/lwip/ |
H A D | pbuf.h | 101 u8_t pbuf_header(struct pbuf *p, s16_t header_size);
|
/vbox/src/VBox/NetworkServices/NAT/ |
H A D | proxy_dhcp6ds.c | 184 pbuf_header(p, -(s16_t)sizeof(msg_header)); 212 pbuf_header(p, -(s16_t)sizeof(opt)); 222 pbuf_header(p, -(s16_t)sizeof(optlen)); 284 pbuf_header(p, -optlen); /* go to next option */
|
H A D | proxy_rtadvd.c | 177 pbuf_header(p, -ip_current_header_tot_len()); 194 pbuf_header(p, ip_current_header_tot_len()); /* restore payload ptr */ 215 pbuf_header(p, -(s16_t)sizeof(struct rs_header)); 249 pbuf_header(p, -optlen);
|
H A D | pxping_win.c | 196 status = pbuf_header(p, iphlen); /* back to IP header */ 205 status = pbuf_header(p, -(u16_t)sizeof(*icmph)); /* to ping payload */ 272 status = pbuf_header(p, (u16_t)(sizeof(*icmph) + iphlen)); 479 status = pbuf_header(p, ip_current_header_tot_len()); 488 status = pbuf_header(p, -(u16_t)sizeof(*icmph)); /* to ping payload */ 557 status = pbuf_header(p, (u16_t)(sizeof(*icmph)
|
/vbox/src/VBox/Devices/Network/lwip/src/core/ipv4/ |
H A D | icmp.c | 62 if (pbuf_header(p, -((s16_t)hlen)) || (p->tot_len < sizeof(u16_t)*2)) { 114 pbuf_header(p, hlen);
|
/vbox/src/VBox/Devices/Network/lwip/src/core/ |
H A D | raw.c | 208 if (pbuf_header(p, IP_HLEN)) { 223 pbuf_header(q, -IP_HLEN); 231 /* free any temporary header pbuf allocated by pbuf_header() */
|
H A D | udp.c | 112 pbuf_header(p, -(s16_t)(IPH_HL(iphdr) * 4)); 210 pbuf_header(p, -UDP_HLEN); 324 if (pbuf_header(p, UDP_HLEN)) {
|
H A D | tcp_in.c | 113 if (pbuf_header(p, -((s16_t)(IPH_HL(iphdr) * 4))) || (p->tot_len < sizeof(struct tcp_hdr))) { 152 pbuf_header(p, -(hdrlen * 4)); 903 pbuf_header(p, -off); 905 pbuf_header(inseg.p, -off);
|
H A D | tcp_out.c | 261 if (pbuf_header(seg->p, TCP_HLEN)) { 315 pbuf_header(queue->p, -TCP_HLEN);
|
/vbox/src/VBox/Devices/Network/lwip-new/src/include/lwip/ |
H A D | pbuf.h | 74 /** indicates this is a custom pbuf: pbuf_free and pbuf_header handle such a 160 u8_t pbuf_header(struct pbuf *p, s16_t header_size);
|
/vbox/src/VBox/Devices/Network/lwip/src/core/ipv6/ |
H A D | ip6.c | 224 pbuf_header(p, -IP_HLEN); 270 if (pbuf_header(p, IP_HLEN)) {
|
/vbox/src/VBox/Devices/Network/lwip-new/src/core/ |
H A D | raw.c | 248 if (pbuf_header(p, header_size)) { 265 if(pbuf_header(q, -header_size)) { 275 /* free any temporary header pbuf allocated by pbuf_header() */ 291 /* free any temporary header pbuf allocated by pbuf_header() */
|
H A D | udp.c | 360 if(pbuf_header(p, -UDP_HLEN)) { 362 LWIP_ASSERT("pbuf_header failed\n", 0); 409 pbuf_header(p, hdrs_len); 417 pbuf_header(q, -hdrs_len); 435 pbuf_header(p, -hdrs_len); 468 pbuf_header(p, ip_current_header_tot_len() + UDP_HLEN); 661 if (pbuf_header(p, -UDP_HLEN)) { 663 LWIP_ASSERT("pbuf_header failed\n", 0); 892 if (pbuf_header(p, UDP_HLEN)) {
|
/vbox/src/VBox/Devices/Network/lwip/src/netif/ppp/ |
H A D | vj.c | 374 pbuf_header(pb, -hlen); 380 pbuf_header(pb, -hlen); 576 pbuf_header(n0, -vjlen); 589 pbuf_header(np, -cs->cs_hlen); 605 if(pbuf_header(n0, cs->cs_hlen)) {
|
/vbox/src/VBox/Devices/Network/lwip-new/src/netif/ppp/ |
H A D | vj.c | 378 if(pbuf_header(pb, -hlen)){ 380 LWIP_ASSERT("pbuf_header failed\n", 0); 387 if(pbuf_header(pb, -hlen)) { 389 LWIP_ASSERT("pbuf_header failed\n", 0); 589 if(pbuf_header(n0, -((s16_t)(vjlen)))) { 591 LWIP_ASSERT("pbuf_header failed\n", 0); 605 if(pbuf_header(np, -cs->cs_hlen)) { 607 LWIP_ASSERT("pbuf_header failed\n", 0); 625 if(pbuf_header(n0, cs->cs_hlen)) {
|
/vbox/src/VBox/Devices/Network/lwip/vbox/include/ |
H A D | lwipopts.h | 207 #define pbuf_header lwip_pbuf_header macro
|
/vbox/src/VBox/Devices/Network/lwip-new/vbox/include/ |
H A D | lwip-namespace.h | 109 #define pbuf_header lwip_pbuf_header macro
|