Home
last modified time | relevance | path

Searched refs:udpstat (Results 1 – 6 of 6) sorted by relevance

/external/qemu/slirp/
Dudp.h71 struct udpstat { struct
93 extern struct udpstat udpstat; argument
Ddebug.c250 lprint(" %6d datagrams received\r\n", udpstat.udps_ipackets); in udpstats()
251 lprint(" %6d with packets shorter than header\r\n", udpstat.udps_hdrops); in udpstats()
252 lprint(" %6d with bad checksums\r\n", udpstat.udps_badsum); in udpstats()
253 lprint(" %6d with data length larger than packet\r\n", udpstat.udps_badlen); in udpstats()
254 lprint(" %6d UDP socket cache misses\r\n", udpstat.udpps_pcbcachemiss); in udpstats()
255 lprint(" %6d datagrams sent\r\n", udpstat.udps_opackets); in udpstats()
Dudp.c45 struct udpstat udpstat; variable
88 STAT(udpstat.udps_ipackets++); in udp_input()
115 STAT(udpstat.udps_badlen++); in udp_input()
141 STAT(udpstat.udps_badsum++); in udp_input()
185 STAT(udpstat.udpps_pcbcachemiss++); in udp_input()
303 STAT(udpstat.udps_opackets++); in udp_output2()
/external/qemu/slirp-android/
Dudp.h72 struct udpstat { struct
92 extern struct udpstat udpstat; argument
Ddebug.c246 lprint(" %6d datagrams received\r\n", udpstat.udps_ipackets);
247 lprint(" %6d with packets shorter than header\r\n", udpstat.udps_hdrops);
248 lprint(" %6d with bad checksums\r\n", udpstat.udps_badsum);
249 lprint(" %6d with data length larger than packet\r\n", udpstat.udps_badlen);
250 lprint(" %6d UDP socket cache misses\r\n", udpstat.udpps_pcbcachemiss);
251 lprint(" %6d datagrams sent\r\n", udpstat.udps_opackets);
Dudp.c47 struct udpstat udpstat; variable
95 STAT(udpstat.udps_ipackets++); in udp_input()
122 STAT(udpstat.udps_badlen++); in udp_input()
179 STAT(udpstat.udps_badsum++); in udp_input()
235 STAT(udpstat.udpps_pcbcachemiss++); in udp_input()
358 STAT(udpstat.udps_opackets++); in udp_output2_()