Searched refs:ip_reass_pbufcount (Results 1 - 2 of 2) sorted by relevance

/barrelfish-master/lib/lwip/src/core/ipv4/
H A Dip_frag.c105 static u16_t ip_reass_pbufcount; variable
150 * Updates the total count of enqueued pbufs (ip_reass_pbufcount),
201 LWIP_ASSERT("ip_reass_pbufcount >= clen",
202 ip_reass_pbufcount >= pbufs_freed);
203 ip_reass_pbufcount -= pbufs_freed;
467 ip_reass_pbufcount -= pbuf_clen(new_p);
506 if ((ip_reass_pbufcount + clen) > IP_REASS_MAX_PBUFS) {
509 ((ip_reass_pbufcount + clen) > IP_REASS_MAX_PBUFS))
515 ip_reass_pbufcount, clen, IP_REASS_MAX_PBUFS));
558 ip_reass_pbufcount
[all...]
/barrelfish-master/lib/lwip2/src/core/ipv4/
H A Dip4_frag.c111 static u16_t ip_reass_pbufcount; variable
152 * Updates the total count of enqueued pbufs (ip_reass_pbufcount),
206 LWIP_ASSERT("ip_reass_pbufcount >= clen", ip_reass_pbufcount >= pbufs_freed);
207 ip_reass_pbufcount -= pbufs_freed;
471 ip_reass_pbufcount -= pbuf_clen(new_p);
508 if ((ip_reass_pbufcount + clen) > IP_REASS_MAX_PBUFS) {
511 ((ip_reass_pbufcount + clen) > IP_REASS_MAX_PBUFS))
516 ip_reass_pbufcount, clen, IP_REASS_MAX_PBUFS));
557 ip_reass_pbufcount
[all...]

Completed in 30 milliseconds