Home
last modified time | relevance | path

Searched refs:pbuf_layer (Results 1 – 9 of 9) sorted by relevance

/third_party/lwip/
D0019-gazelle-reduce-copy-in-send.patch15 @@ -281,6 +281,10 @@ pbuf_alloc(pbuf_layer layer, u16_t length, pbuf_type type)
26 @@ -289,6 +293,7 @@ pbuf_alloc(pbuf_layer layer, u16_t length, pbuf_type type)
43 +struct pbuf *lwip_alloc_pbuf(pbuf_layer l, u16_t length, pbuf_type type);
45 struct pbuf *pbuf_alloc(pbuf_layer l, u16_t length, pbuf_type type);
D0073-lstack_lwip-external-api-start-with-do_lwip_-prefix.patch100 @@ -288,7 +288,7 @@ pbuf_alloc(pbuf_layer layer, u16_t length, pbuf_type type)
163 -struct pbuf *lwip_alloc_pbuf(pbuf_layer layer, uint16_t length, pbuf_type type);
164 +extern struct pbuf *do_lwip_alloc_pbuf(pbuf_layer layer, uint16_t length, pbuf_type type);
167 struct pbuf *pbuf_alloc(pbuf_layer l, u16_t length, pbuf_type type);
D0023-refactor-event-and-checksum-offload-support.patch233 @@ -282,7 +282,7 @@ pbuf_alloc(pbuf_layer layer, u16_t length, pbuf_type type)
557 -struct pbuf *lwip_alloc_pbuf(pbuf_layer l, u16_t length, pbuf_type type);
558 +struct pbuf *lwip_alloc_pbuf(pbuf_layer layer, uint16_t length, pbuf_type type);
560 struct pbuf *pbuf_alloc(pbuf_layer l, u16_t length, pbuf_type type);
D0075-adapt-read-write-for-rtc-mode.patch115 @@ -238,6 +240,10 @@ pbuf_alloc(pbuf_layer layer, u16_t length, pbuf_type type)
126 @@ -273,6 +279,7 @@ pbuf_alloc(pbuf_layer layer, u16_t length, pbuf_type type)
D0053-cleancode-improve-lwipopts.h-readability.patch580 @@ -284,7 +284,7 @@ pbuf_alloc(pbuf_layer layer, u16_t length, pbuf_type type)
1514 struct pbuf *lwip_alloc_pbuf(pbuf_layer layer, uint16_t length, pbuf_type type);
1516 struct pbuf *pbuf_alloc(pbuf_layer l, u16_t length, pbuf_type type);
D0002-adapt-lstack.patch2905 @@ -271,7 +271,7 @@ tcp_pbuf_prealloc(pbuf_layer layer, u16_t length, u16_t max_length,
/third_party/lwip/src/include/lwip/
Dpbuf.h112 } pbuf_layer; typedef
275 struct pbuf *pbuf_alloc(pbuf_layer l, u16_t length, pbuf_type type);
278 struct pbuf *pbuf_alloced_custom(pbuf_layer l, u16_t length, pbuf_type type,
305 struct pbuf *pbuf_coalesce(struct pbuf *p, pbuf_layer layer);
306 struct pbuf *pbuf_clone(pbuf_layer l, pbuf_type type, struct pbuf *p);
/third_party/lwip/src/core/
Dpbuf.c224 pbuf_alloc(pbuf_layer layer, u16_t length, pbuf_type type) in pbuf_alloc()
363 pbuf_alloced_custom(pbuf_layer l, u16_t length, pbuf_type type, struct pbuf_custom *p, in pbuf_alloced_custom()
1312 pbuf_coalesce(struct pbuf *p, pbuf_layer layer) in pbuf_coalesce()
1340 pbuf_clone(pbuf_layer layer, pbuf_type type, struct pbuf *p) in pbuf_clone()
Dtcp_out.c237 tcp_pbuf_prealloc(pbuf_layer layer, u16_t length, u16_t max_length, in tcp_pbuf_prealloc()