Lines Matching defs:tcpstat
369 struct tcpstat tcpstat;
371 size_t len = sizeof(tcpstat);
374 &tcpstat, &len, NULL, 0) == -1) {
381 #define p(f, m) if (tcpstat.f || sflag <= 1) \
382 printf(m, tcpstat.f, plural(tcpstat.f))
383 #define p1(f, m) if (tcpstat.f || sflag <= 1) \
384 printf(m, tcpstat.f)
385 #define p2(f1, f2, m) if (tcpstat.f1 || tcpstat.f2 || sflag <= 1) \
386 printf(m, tcpstat.f1, plural(tcpstat.f1), tcpstat.f2, plural(tcpstat.f2))
387 #define p2a(f1, f2, m) if (tcpstat.f1 || tcpstat.f2 || sflag <= 1) \
388 printf(m, tcpstat.f1, plural(tcpstat.f1), tcpstat.f2)
389 #define p2b(f1, f2, m) if (tcpstat.f1 || sflag <= 1) \
390 printf(m, tcpstat.f1, tcpstat.f2)
391 #define p2bys(f1, f2, m) if (tcpstat.f1 || sflag <= 1) \
392 printf(m, tcpstat.f1, pluralys(tcpstat.f1), tcpstat.f2)
393 #define pes(f, m) if (tcpstat.f || sflag <= 1) \
394 printf(m, tcpstat.f, plurales(tcpstat.f))
395 #define pys(f, m) if (tcpstat.f || sflag <= 1) \
396 printf(m, tcpstat.f, pluralys(tcpstat.f))