Home
last modified time | relevance | path

Searched refs:lwip_stats (Results 1 – 3 of 3) sorted by relevance

/external/syslinux/core/lwip/src/include/lwip/
Dstats.h149 extern struct stats_ lwip_stats;
153 #define STATS_INC(x) ++lwip_stats.x
154 #define STATS_DEC(x) --lwip_stats.x
155 #define STATS_INC_USED(x, y) do { lwip_stats.x.used += y; \
156 if (lwip_stats.x.max < lwip_stats.x.used) { \
157 lwip_stats.x.max = lwip_stats.x.used; \
169 #define TCP_STATS_DISPLAY() stats_display_proto(&lwip_stats.tcp, "TCP")
177 #define UDP_STATS_DISPLAY() stats_display_proto(&lwip_stats.udp, "UDP")
185 #define ICMP_STATS_DISPLAY() stats_display_proto(&lwip_stats.icmp, "ICMP")
193 #define IGMP_STATS_DISPLAY() stats_display_igmp(&lwip_stats.igmp)
[all …]
/external/syslinux/core/lwip/src/core/
Dstats.c49 struct stats_ lwip_stats; variable
61 lwip_stats.memp[i].name = memp_names[i]; in stats_init()
65 lwip_stats.mem.name = "MEM"; in stats_init()
/external/syslinux/core/lwip/
DCHANGELOG2332 call to "lwip_stats.link.recv++;" in low_level_input() & ethernetif_input().