Searched refs:tcpstat (Results 1 – 13 of 13) sorted by relevance
/external/qemu/slirp/ |
D | debug.c | 183 lprint(" %6d packets sent\r\n", tcpstat.tcps_sndtotal); in tcpstats() 185 tcpstat.tcps_sndpack, tcpstat.tcps_sndbyte); in tcpstats() 187 tcpstat.tcps_sndrexmitpack, tcpstat.tcps_sndrexmitbyte); in tcpstats() 189 tcpstat.tcps_sndacks, tcpstat.tcps_delack); in tcpstats() 190 lprint(" %6d URG only packets\r\n", tcpstat.tcps_sndurg); in tcpstats() 191 lprint(" %6d window probe packets\r\n", tcpstat.tcps_sndprobe); in tcpstats() 192 lprint(" %6d window update packets\r\n", tcpstat.tcps_sndwinup); in tcpstats() 193 lprint(" %6d control (SYN/FIN/RST) packets\r\n", tcpstat.tcps_sndctrl); in tcpstats() 194 lprint(" %6d times tcp_output did nothing\r\n", tcpstat.tcps_didnuttin); in tcpstats() 196 lprint(" %6d packets received\r\n", tcpstat.tcps_rcvtotal); in tcpstats() [all …]
|
D | tcp_timer.c | 36 struct tcpstat tcpstat; /* tcp statistics */ variable 61 STAT(tcpstat.tcps_delack++); in tcp_fasttimo() 187 STAT(tcpstat.tcps_timeoutdrop++); in tcp_timers() 199 STAT(tcpstat.tcps_rexmttimeo++); in tcp_timers() 262 STAT(tcpstat.tcps_persisttimeo++); in tcp_timers() 274 STAT(tcpstat.tcps_keeptimeo++); in tcp_timers() 294 STAT(tcpstat.tcps_keepprobe++); in tcp_timers() 312 STAT(tcpstat.tcps_keepdrops++); in tcp_timers()
|
D | tcp_input.c | 78 STAT(tcpstat.tcps_rcvpack++); \ 79 STAT(tcpstat.tcps_rcvbyte += (ti)->ti_len); \ 98 STAT(tcpstat.tcps_rcvpack++); \ 99 STAT(tcpstat.tcps_rcvbyte += (ti)->ti_len); \ 150 STAT(tcpstat.tcps_rcvduppack++); in tcp_reass() 151 STAT(tcpstat.tcps_rcvdupbyte += ti->ti_len); in tcp_reass() 167 STAT(tcpstat.tcps_rcvoopack++); in tcp_reass() 168 STAT(tcpstat.tcps_rcvoobyte += ti->ti_len); in tcp_reass() 273 STAT(tcpstat.tcps_rcvtotal++); in tcp_input() 307 STAT(tcpstat.tcps_rcvbadsum++); in tcp_input() [all …]
|
D | tcp_output.c | 261 STAT(tcpstat.tcps_didnuttin++); 337 STAT(tcpstat.tcps_sndprobe++); 339 STAT(tcpstat.tcps_sndrexmitpack++); 340 STAT(tcpstat.tcps_sndrexmitbyte += len); 342 STAT(tcpstat.tcps_sndpack++); 343 STAT(tcpstat.tcps_sndbyte += len); 380 STAT(tcpstat.tcps_sndacks++); 382 STAT(tcpstat.tcps_sndctrl++); 384 STAT(tcpstat.tcps_sndurg++); 386 STAT(tcpstat.tcps_sndwinup++); [all …]
|
D | tcp_var.h | 169 struct tcpstat { struct 225 extern struct tcpstat tcpstat; /* tcp statistics */ argument
|
D | tcp_subr.c | 236 STAT(tcpstat.tcps_drops++); in tcp_drop() 238 STAT(tcpstat.tcps_conndrops++); in tcp_drop() 285 STAT(tcpstat.tcps_closed++); in tcp_close() 503 STAT(tcpstat.tcps_connattempt++); in tcp_connect() 835 STAT(tcpstat.tcps_connattempt++); in tcp_emu()
|
/external/qemu/slirp-android/ |
D | debug.c | 179 lprint(" %6d packets sent\r\n", tcpstat.tcps_sndtotal); 181 tcpstat.tcps_sndpack, tcpstat.tcps_sndbyte); 183 tcpstat.tcps_sndrexmitpack, tcpstat.tcps_sndrexmitbyte); 185 tcpstat.tcps_sndacks, tcpstat.tcps_delack); 186 lprint(" %6d URG only packets\r\n", tcpstat.tcps_sndurg); 187 lprint(" %6d window probe packets\r\n", tcpstat.tcps_sndprobe); 188 lprint(" %6d window update packets\r\n", tcpstat.tcps_sndwinup); 189 lprint(" %6d control (SYN/FIN/RST) packets\r\n", tcpstat.tcps_sndctrl); 190 lprint(" %6d times tcp_output did nothing\r\n", tcpstat.tcps_didnuttin); 192 lprint(" %6d packets received\r\n", tcpstat.tcps_rcvtotal); [all …]
|
D | tcp_timer.c | 36 struct tcpstat tcpstat; /* tcp statistics */ variable 61 STAT(tcpstat.tcps_delack++); in tcp_fasttimo() 187 STAT(tcpstat.tcps_timeoutdrop++); in tcp_timers() 199 STAT(tcpstat.tcps_rexmttimeo++); in tcp_timers() 262 STAT(tcpstat.tcps_persisttimeo++); in tcp_timers() 274 STAT(tcpstat.tcps_keeptimeo++); in tcp_timers() 294 STAT(tcpstat.tcps_keepprobe++); in tcp_timers() 312 STAT(tcpstat.tcps_keepdrops++); in tcp_timers()
|
D | tcp_input.c | 78 STAT(tcpstat.tcps_rcvpack++); \ 79 STAT(tcpstat.tcps_rcvbyte += (ti)->ti_len); \ 98 STAT(tcpstat.tcps_rcvpack++); \ 99 STAT(tcpstat.tcps_rcvbyte += (ti)->ti_len); \ 150 STAT(tcpstat.tcps_rcvduppack++); in tcp_reass() 151 STAT(tcpstat.tcps_rcvdupbyte += ti->ti_len); in tcp_reass() 167 STAT(tcpstat.tcps_rcvoopack++); in tcp_reass() 168 STAT(tcpstat.tcps_rcvoobyte += ti->ti_len); in tcp_reass() 273 STAT(tcpstat.tcps_rcvtotal++); in tcp_input() 307 STAT(tcpstat.tcps_rcvbadsum++); in tcp_input() [all …]
|
D | tcp_output.c | 261 STAT(tcpstat.tcps_didnuttin++); 337 STAT(tcpstat.tcps_sndprobe++); 339 STAT(tcpstat.tcps_sndrexmitpack++); 340 STAT(tcpstat.tcps_sndrexmitbyte += len); 342 STAT(tcpstat.tcps_sndpack++); 343 STAT(tcpstat.tcps_sndbyte += len); 380 STAT(tcpstat.tcps_sndacks++); 382 STAT(tcpstat.tcps_sndctrl++); 384 STAT(tcpstat.tcps_sndurg++); 386 STAT(tcpstat.tcps_sndwinup++); [all …]
|
D | tcp_var.h | 173 struct tcpstat { struct 229 extern struct tcpstat tcpstat; /* tcp statistics */ argument
|
D | tcp_subr.c | 238 STAT(tcpstat.tcps_drops++); in tcp_drop() 240 STAT(tcpstat.tcps_conndrops++); in tcp_drop() 287 STAT(tcpstat.tcps_closed++); in tcp_close() 659 STAT(tcpstat.tcps_connattempt++); in tcp_connect()
|
/external/iproute2/misc/ |
D | ss.c | 423 struct tcpstat struct 693 int run_ssfilter(struct ssfilter *f, struct tcpstat *s) in run_ssfilter() 1162 struct tcpstat s; in tcp_show_line() 1407 struct tcpstat s; in tcp_show_sock() 1743 struct tcpstat s; in dgram_show_line() 1957 struct tcpstat tst; in unix_list_print() 2099 struct tcpstat tst; in packet_show() 2167 struct tcpstat tst; in netlink_show()
|