Home
last modified time | relevance | path

Searched refs:STATS_GET (Results 1 – 5 of 5) sorted by relevance

/third_party/lwip/src/apps/snmp/
Dsnmp_mib2_icmp.c65 *uint_ptr = STATS_GET(mib2.icmpinmsgs); in icmp_get_value()
68 *uint_ptr = STATS_GET(mib2.icmpinerrors); in icmp_get_value()
71 *uint_ptr = STATS_GET(mib2.icmpindestunreachs); in icmp_get_value()
74 *uint_ptr = STATS_GET(mib2.icmpintimeexcds); in icmp_get_value()
77 *uint_ptr = STATS_GET(mib2.icmpinparmprobs); in icmp_get_value()
80 *uint_ptr = STATS_GET(mib2.icmpinsrcquenchs); in icmp_get_value()
83 *uint_ptr = STATS_GET(mib2.icmpinredirects); in icmp_get_value()
86 *uint_ptr = STATS_GET(mib2.icmpinechos); in icmp_get_value()
89 *uint_ptr = STATS_GET(mib2.icmpinechoreps); in icmp_get_value()
92 *uint_ptr = STATS_GET(mib2.icmpintimestamps); in icmp_get_value()
[all …]
Dsnmp_mib2_ip.c81 *uint_ptr = STATS_GET(mib2.ipinreceives); in ip_get_value()
84 *uint_ptr = STATS_GET(mib2.ipinhdrerrors); in ip_get_value()
87 *uint_ptr = STATS_GET(mib2.ipinaddrerrors); in ip_get_value()
90 *uint_ptr = STATS_GET(mib2.ipforwdatagrams); in ip_get_value()
93 *uint_ptr = STATS_GET(mib2.ipinunknownprotos); in ip_get_value()
96 *uint_ptr = STATS_GET(mib2.ipindiscards); in ip_get_value()
99 *uint_ptr = STATS_GET(mib2.ipindelivers); in ip_get_value()
102 *uint_ptr = STATS_GET(mib2.ipoutrequests); in ip_get_value()
105 *uint_ptr = STATS_GET(mib2.ipoutdiscards); in ip_get_value()
108 *uint_ptr = STATS_GET(mib2.ipoutnoroutes); in ip_get_value()
[all …]
Dsnmp_mib2_tcp.c85 *uint_ptr = STATS_GET(mib2.tcpactiveopens); in tcp_get_value()
88 *uint_ptr = STATS_GET(mib2.tcppassiveopens); in tcp_get_value()
91 *uint_ptr = STATS_GET(mib2.tcpattemptfails); in tcp_get_value()
94 *uint_ptr = STATS_GET(mib2.tcpestabresets); in tcp_get_value()
110 *uint_ptr = STATS_GET(mib2.tcpinsegs); in tcp_get_value()
113 *uint_ptr = STATS_GET(mib2.tcpoutsegs); in tcp_get_value()
116 *uint_ptr = STATS_GET(mib2.tcpretranssegs); in tcp_get_value()
119 *uint_ptr = STATS_GET(mib2.tcpinerrs); in tcp_get_value()
122 *uint_ptr = STATS_GET(mib2.tcpoutrsts); in tcp_get_value()
127 u64_t val64 = STATS_GET(mib2.tcpinsegs); in tcp_get_value()
[all …]
Dsnmp_mib2_udp.c67 *uint_ptr = STATS_GET(mib2.udpindatagrams); in udp_get_value()
70 *uint_ptr = STATS_GET(mib2.udpnoports); in udp_get_value()
73 *uint_ptr = STATS_GET(mib2.udpinerrors); in udp_get_value()
76 *uint_ptr = STATS_GET(mib2.udpoutdatagrams); in udp_get_value()
81 u64_t val64 = STATS_GET(mib2.udpindatagrams); in udp_get_value()
87 u64_t val64 = STATS_GET(mib2.udpoutdatagrams); in udp_get_value()
/third_party/lwip/src/include/lwip/
Dstats.h316 #define STATS_GET(x) lwip_stats.x macro
405 #define MEMP_STATS_GET(x, i) STATS_GET(memp[i]->x)