Lines Matching +full:row +full:- +full:delay
1 /*-
2 * SPDX-License-Identifier: BSD-3-Clause
57 /*-
58 --0 1 2 3 4 5 6 7
59 --0123456789012345678901234567890123456789012345678901234567890123456789012345
63 03999999999 with bad length 999999999 suppressed - original too short
64 04999999999 with bad checksum 999999999 suppressed - original was ICMP
72 12999999999 time-to-live exceeded 999999999 time-to-line exceeded
79 --0123456789012345678901234567890123456789012345678901234567890123456789012345
80 --0 1 2 3 4 5 6 7
86 return (subwin(stdscr, LINES-3-1, 0, MAINWIN_ROW, 0)); in openicmp6()
103 #define L(row, str) mvwprintw(wnd, row, 10, str) in labelicmp6() argument
104 #define R(row, str) mvwprintw(wnd, row, 45, str); in labelicmp6() argument
108 L(3, "with bad length"); R(3, "suppressed - original too short"); in labelicmp6()
109 L(4, "with bad checksum"); R(4, "suppressed - original was ICMP"); in labelicmp6()
113 #define B(row, str) L(row, str); R(row, str) in labelicmp6() argument
118 B(12, "time-to-live exceeded"); in labelicmp6()
137 divisor = (delay > 1000000) ? delay / 1000000 : 1; in domode()
149 #define DO(stat) ret->stat = (icmp6stat.stat - sub->stat) / divisor in domode()
185 #define DO(stat, row, col) \ in showicmp6() argument
186 mvwprintw(wnd, row, col, "%9"PRIu64, stats.stat) in showicmp6()
196 #define DO2(type, row) DO(icp6s_inhist[type], row, 0); DO(icp6s_outhist[type], \ in showicmp6() argument
197 row, 35) in showicmp6()
229 error("icmp6stat structure has grown--recompile systat!"); in initicmp6()