Searched refs:udpstat (Results 1 – 6 of 6) sorted by relevance
/external/qemu/slirp/ |
D | udp.h | 71 struct udpstat { struct 93 extern struct udpstat udpstat; argument
|
D | debug.c | 250 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()
|
D | udp.c | 45 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/ |
D | udp.h | 72 struct udpstat { struct 92 extern struct udpstat udpstat; argument
|
D | debug.c | 246 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);
|
D | udp.c | 47 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_()
|