Searched refs:pbuf_take (Results 1 – 11 of 11) sorted by relevance
/third_party/lwip/test/unit/core/ |
D | test_pbuf.c | 144 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/ |
D | netbuf.h | 91 #define netbuf_take(buf, dataptr, len) pbuf_take((buf)->p, dataptr, len)
|
D | pbuf.h | 302 err_t pbuf_take(struct pbuf *buf, const void *dataptr, u16_t len);
|
/third_party/lwip/doc/ |
D | NO_SYS_SampleCode.c | 11 pbuf_take(p, eth_data, eth_data_count); in eth_mac_irq()
|
/third_party/lwip/src/core/ |
D | dns.c | 820 pbuf_take(p, &udp_data_hdr, sizeof(udp_data_hdr)); in dns_send() 823 pbuf_take(p, &hdr, SIZEOF_DNS_HDR); in dns_send() 826 pbuf_take(p, &hdr, SIZEOF_DNS_HDR); in dns_send()
|
D | pbuf.c | 1230 pbuf_take(struct pbuf *buf, const void *dataptr, u16_t len) in pbuf_take() function 1291 return pbuf_take(q->next, src_ptr, remaining_len); in pbuf_take_at()
|
/third_party/lwip/test/unit/tcp/ |
D | tcp_helper.c | 95 pbuf_take(p, data, (u16_t)data_len); in tcp_create_segment_wnd()
|
/third_party/lwip/test/unit/udp/ |
D | test_udp.c | 187 err = pbuf_take(p, test_data, length); in test_udp_create_test_packet()
|
/third_party/lwip/src/netif/ppp/ |
D | vj.c | 651 pbuf_take(np, n0->payload, n0->len); in vj_uncompress_tcp()
|
D | pppos.c | 432 pbuf_take(p, s, l); in pppos_input_tcpip()
|
/third_party/lwip/src/apps/mdns/ |
D | mdns.c | 1482 pbuf_take(outpkt->pbuf, &hdr, sizeof(hdr)); in mdns_send_outpacket()
|