Home
last modified time | relevance | path

Searched refs:tcpstat (Results 1 – 13 of 13) sorted by relevance

/external/qemu/slirp/
Ddebug.c183 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 …]
Dtcp_timer.c36 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()
Dtcp_input.c78 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 …]
Dtcp_output.c261 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 …]
Dtcp_var.h169 struct tcpstat { struct
225 extern struct tcpstat tcpstat; /* tcp statistics */ argument
Dtcp_subr.c236 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/
Ddebug.c179 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 …]
Dtcp_timer.c36 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()
Dtcp_input.c78 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 …]
Dtcp_output.c261 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 …]
Dtcp_var.h173 struct tcpstat { struct
229 extern struct tcpstat tcpstat; /* tcp statistics */ argument
Dtcp_subr.c238 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/
Dss.c423 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()