Lines Matching refs:stat
86 CSSTAT stat;
125 else if (csstat(sp->name, &sp->stat))
145 if (n = (a->stat.pctusr + a->stat.pctsys) - (b->stat.pctusr + b->stat.pctsys))
149 if (a->stat.idle < b->stat.idle)
151 if (a->stat.idle > b->stat.idle)
155 if (a->stat.load < b->stat.load)
157 if (a->stat.load > b->stat.load)
161 if (a->stat.up < b->stat.up)
163 if (a->stat.up > b->stat.up)
167 if (n = a->stat.users - b->stat.users)
248 sfprintf(sfstdout, "%-12s%4s%7s,%3d user%s idle%7s, load%3d.%02d, %%usr%3d, %%sys%3d\n", sp->name, sp->stat.up < 0 ? "down" : "up", fmtelapsed(sp->stat.up < 0 ? -sp->stat.up : sp->stat.up, 1), sp->stat.users, sp->stat.users == 1 ? ", " : "s,", sp->stat.idle > sp->stat.up ? "%" : fmtelapsed(sp->stat.idle, 1), sp->stat.load / 100, sp->stat.load % 100, sp->stat.pctusr, sp->stat.pctsys);