Searched defs:pbuf_take (Results 1 - 4 of 4) sorted by relevance
/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-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);
|
/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
|
Completed in 55 milliseconds