/src/tests/rump/kernspace/ |
alloc.c | 53 static int curstat; variable in typeref:typename:int 61 curstat++; 64 while (curstat < 2) 104 while (curstat == 0) 113 curstat++;
|
/src/usr.bin/systat/ |
icmp.c | 53 mvwprintw(wnd, row, col, "%9llu", (unsigned long long)curstat[stat]) 64 static uint64_t curstat[ICMP_NSTATS]; variable in typeref:typename:uint64_t[] 126 tin += curstat[ICMP_STAT_INHIST + i]; 127 tout += curstat[ICMP_STAT_OUTHIST + i]; 130 tin += curstat[ICMP_STAT_BADCODE] + curstat[ICMP_STAT_BADLEN] + 131 curstat[ICMP_STAT_CHECKSUM] + curstat[ICMP_STAT_TOOSHORT]; 169 xADJINETCTR(curstat, oldstat, newstat, ICMP_STAT_BADCODE); 170 xADJINETCTR(curstat, oldstat, newstat, ICMP_STAT_BADLEN) [all...] |
ip.c | 53 mvwprintw(wnd, row, col, "%9llu", (unsigned long long)curstat.stat) 67 static struct mystat curstat; variable in typeref:struct:mystat 138 totalout = curstat.i[IP_STAT_FORWARD] + curstat.i[IP_STAT_LOCALOUT]; 198 ADJINETCTR(curstat, oldstat, newstat, i[IP_STAT_TOTAL]); 199 ADJINETCTR(curstat, oldstat, newstat, i[IP_STAT_DELIVERED]); 200 ADJINETCTR(curstat, oldstat, newstat, i[IP_STAT_BADSUM]); 201 ADJINETCTR(curstat, oldstat, newstat, i[IP_STAT_TOOSHORT]); 202 ADJINETCTR(curstat, oldstat, newstat, i[IP_STAT_TOOSMALL]); 203 ADJINETCTR(curstat, oldstat, newstat, i[IP_STAT_BADHLEN]) [all...] |
ip6.c | 51 mvwprintw(wnd, row, col, "%9llu", (unsigned long long)curstat[stat]) 60 static uint64_t curstat[IP6_NSTATS]; variable in typeref:typename:uint64_t[] 136 m2m += curstat[IP6_STAT_M2M + i]; 195 xADJINETCTR(curstat, oldstat, newstat, i);
|
tcp.c | 54 mvwprintw(wnd, row, col, "%9llu", (unsigned long long)curstat[stat]) 63 static uint64_t curstat[TCP_NSTATS]; variable in typeref:typename:uint64_t[] 224 xADJINETCTR(curstat, oldstat, newstat, i);
|