Searched refs:pbuf_take (Results 1 - 13 of 13) sorted by relevance

/vbox/src/VBox/Devices/Network/lwip/src/include/lwip/
H A Dpbuf.h108 struct pbuf *pbuf_take(struct pbuf *f);
/vbox/src/VBox/Devices/Network/lwip-new/src/include/lwip/
H A Dnetbuf.h83 #define netbuf_take(buf, dataptr, len) pbuf_take((buf)->p, dataptr, len)
H A Dpbuf.h169 err_t pbuf_take(struct pbuf *buf, const void *dataptr, u16_t len);
/vbox/src/VBox/Devices/Network/lwip/vbox/include/
H A Dlwipopts.h212 #define pbuf_take lwip_pbuf_take macro
/vbox/src/VBox/Devices/Network/lwip-new/vbox/include/
H A Dlwip-namespace.h116 #define pbuf_take lwip_pbuf_take macro
/vbox/src/VBox/NetworkServices/NAT/
H A Dproxy_dhcp6ds.c301 error = pbuf_take(q, dhcp6ds_reply_buf, roff);
303 DPRINTF(("%s: pbuf_take(%d) failed: %s\n",
H A Dfwudp.c326 error = pbuf_take(p, pollmgr_udpbuf, nread);
328 DPRINTF(("%s: pbuf_take(%d) failed\n", __func__, (int)nread));
H A Dpxdns.c835 error = pbuf_take(req->reply, pollmgr_udpbuf, nread);
837 DPRINTF(("%s: pbuf_take(%d) failed\n", __func__, (int)nread));
H A Dpxudp.c773 error = pbuf_take(p, pollmgr_udpbuf, (u16_t)nread);
775 DPRINTF(("%s: pbuf_take(%d) failed\n", __func__, (int)nread));
H A Dpxping.c1884 error = pbuf_take(p, pollmgr_udpbuf, iplen);
1886 DPRINTF(("%s: pbuf_take(%d) failed\n",
1948 error = pbuf_take(p, pollmgr_udpbuf, icmplen);
1950 DPRINTF(("%s: pbuf_take(%d) failed\n",
/vbox/src/VBox/Devices/Network/lwip/src/core/
H A Dpbuf.c204 * then pbuf_take should be called to copy the buffer.
826 * @note You MUST explicitly use p = pbuf_take(p);
828 * by a (differently located) copy through pbuf_take()!
838 pbuf_take(struct pbuf *p) function
841 LWIP_ASSERT("pbuf_take: p != NULL\n", p != NULL);
842 LWIP_DEBUGF(PBUF_DEBUG | DBG_TRACE | 3, ("pbuf_take(%p)\n", (void*)p));
851 LWIP_DEBUGF(PBUF_DEBUG | DBG_TRACE, ("pbuf_take: encountered PBUF_REF %p\n", (void *)p));
857 LWIP_DEBUGF(PBUF_DEBUG | DBG_TRACE | 2, ("pbuf_take: Could not allocate PBUF_POOL\n"));
862 LWIP_DEBUGF(PBUF_DEBUG | DBG_TRACE | 2, ("pbuf_take: PBUF_POOL too small to replace PBUF_REF\n"));
868 LWIP_DEBUGF(PBUF_DEBUG | DBG_TRACE | 2, ("pbuf_take
[all...]
/vbox/src/VBox/Devices/Network/lwip/src/netif/
H A Detharp.c813 p = pbuf_take(q);
/vbox/src/VBox/Devices/Network/lwip-new/src/core/
H A Dpbuf.c199 * then pbuf_take should be called to copy the buffer.
840 * @note You MUST explicitly use p = pbuf_take(p);
966 pbuf_take(struct pbuf *buf, const void *dataptr, u16_t len) function
973 LWIP_ERROR("pbuf_take: invalid buf", (buf != NULL), return 0;);
974 LWIP_ERROR("pbuf_take: invalid dataptr", (dataptr != NULL), return 0;);
982 LWIP_ASSERT("pbuf_take: invalid pbuf", p != NULL);

Completed in 117 milliseconds