Searched refs:pbuf_take (Results 1 - 13 of 13) sorted by relevance
/vbox/src/VBox/Devices/Network/lwip/src/include/lwip/ |
H A D | pbuf.h | 108 struct pbuf *pbuf_take(struct pbuf *f);
|
/vbox/src/VBox/Devices/Network/lwip-new/src/include/lwip/ |
H A D | netbuf.h | 83 #define netbuf_take(buf, dataptr, len) pbuf_take((buf)->p, dataptr, len)
|
H A D | pbuf.h | 169 err_t pbuf_take(struct pbuf *buf, const void *dataptr, u16_t len);
|
/vbox/src/VBox/Devices/Network/lwip/vbox/include/ |
H A D | lwipopts.h | 212 #define pbuf_take lwip_pbuf_take macro
|
/vbox/src/VBox/Devices/Network/lwip-new/vbox/include/ |
H A D | lwip-namespace.h | 116 #define pbuf_take lwip_pbuf_take macro
|
/vbox/src/VBox/NetworkServices/NAT/ |
H A D | proxy_dhcp6ds.c | 301 error = pbuf_take(q, dhcp6ds_reply_buf, roff); 303 DPRINTF(("%s: pbuf_take(%d) failed: %s\n",
|
H A D | fwudp.c | 326 error = pbuf_take(p, pollmgr_udpbuf, nread); 328 DPRINTF(("%s: pbuf_take(%d) failed\n", __func__, (int)nread));
|
H A D | pxdns.c | 835 error = pbuf_take(req->reply, pollmgr_udpbuf, nread); 837 DPRINTF(("%s: pbuf_take(%d) failed\n", __func__, (int)nread));
|
H A D | pxudp.c | 773 error = pbuf_take(p, pollmgr_udpbuf, (u16_t)nread); 775 DPRINTF(("%s: pbuf_take(%d) failed\n", __func__, (int)nread));
|
H A D | pxping.c | 1884 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 D | pbuf.c | 204 * 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 D | etharp.c | 813 p = pbuf_take(q);
|
/vbox/src/VBox/Devices/Network/lwip-new/src/core/ |
H A D | pbuf.c | 199 * 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 294 milliseconds