Lines Matching defs:statsp
214 get_class_stats(class_stats_t *statsp, struct rm_class *cl)
216 statsp->xmit_cnt = cl->stats_.xmit_cnt;
217 statsp->drop_cnt = cl->stats_.drop_cnt;
218 statsp->over = cl->stats_.over;
219 statsp->borrows = cl->stats_.borrows;
220 statsp->overactions = cl->stats_.overactions;
221 statsp->delays = cl->stats_.delays;
223 statsp->depth = cl->depth_;
224 statsp->priority = cl->pri_;
225 statsp->maxidle = cl->maxidle_;
226 statsp->minidle = cl->minidle_;
227 statsp->offtime = cl->offtime_;
228 statsp->qmax = qlimit(cl->q_);
229 statsp->ps_per_byte = cl->ps_per_byte_;
230 statsp->wrr_allot = cl->w_allotment_;
231 statsp->qcnt = qlen(cl->q_);
232 statsp->avgidle = cl->avgidle_;
234 statsp->qtype = qtype(cl->q_);
237 red_getstats(cl->red_, &statsp->red[0]);
241 rio_getstats((rio_t *)cl->red_, &statsp->red[0]);