Home
last modified time | relevance | path

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

/third_party/lwip/test/unit/core/
H A Dtest_pbuf.c144 err = pbuf_take(p1, testbuf_1, TESTBUFSIZE_1); in START_TEST()
146 err = pbuf_take(p2, testbuf_2, TESTBUFSIZE_2); in START_TEST()
148 err = pbuf_take(p3, testbuf_3, TESTBUFSIZE_3); in START_TEST()
/third_party/lwip/src/include/lwip/
H A Dnetbuf.h91 #define netbuf_take(buf, dataptr, len) pbuf_take((buf)->p, dataptr, len)
H A Dpbuf.h302 err_t pbuf_take(struct pbuf *buf, const void *dataptr, u16_t len);
/third_party/lwip/doc/
H A DNO_SYS_SampleCode.c11 pbuf_take(p, eth_data, eth_data_count); in eth_mac_irq()
/third_party/lwip/src/core/
H A Ddns.c845 pbuf_take(p, &udp_data_hdr, sizeof(udp_data_hdr)); in dns_send()
848 pbuf_take(p, &hdr, SIZEOF_DNS_HDR); in dns_send()
851 pbuf_take(p, &hdr, SIZEOF_DNS_HDR); in dns_send()
H A Dpbuf.c216 * then pbuf_take should be called to copy the buffer.
322 * then pbuf_take should be called to copy the buffer.
949 * @note You MUST explicitly use p = pbuf_take(p);
1230 pbuf_take(struct pbuf *buf, const void *dataptr, u16_t len) in pbuf_take() function
1237 LWIP_ERROR("pbuf_take: invalid buf", (buf != NULL), return ERR_ARG;); in pbuf_take()
1238 LWIP_ERROR("pbuf_take: invalid dataptr", (dataptr != NULL), return ERR_ARG;); in pbuf_take()
1239 LWIP_ERROR("pbuf_take: buf not large enough", (buf->tot_len >= len), return ERR_MEM;); in pbuf_take()
1247 LWIP_ASSERT("pbuf_take: invalid pbuf", p != NULL); in pbuf_take()
1264 * Same as pbuf_take() but puts data at an offset
1291 return pbuf_take( in pbuf_take_at()
[all...]
/third_party/lwip/src/netif/ppp/
H A Dvj.c651 pbuf_take(np, n0->payload, n0->len); in vj_uncompress_tcp()
H A Dpppos.c432 pbuf_take(p, s, l); in pppos_input_tcpip()
/third_party/lwip/test/unit/tcp/
H A Dtcp_helper.c95 pbuf_take(p, data, (u16_t)data_len); in tcp_create_segment_wnd()
/third_party/lwip/test/unit/udp/
H A Dtest_udp.c187 err = pbuf_take(p, test_data, length); in test_udp_create_test_packet()
/third_party/lwip/src/apps/mdns/
H A Dmdns.c1482 pbuf_take(outpkt->pbuf, &hdr, sizeof(hdr)); in mdns_send_outpacket()

Completed in 15 milliseconds