Home
last modified time | relevance | path

Searched refs:statsp (Results 1 – 4 of 4) sorted by relevance

/freebsd-10-stable/contrib/ntp/lib/isc/
Dstats.c88 create_stats(isc_mem_t *mctx, int ncounters, isc_stats_t **statsp) { in create_stats() argument
92 REQUIRE(statsp != NULL && *statsp == NULL); in create_stats()
127 *statsp = stats; in create_stats()
150 isc_stats_attach(isc_stats_t *stats, isc_stats_t **statsp) { in isc_stats_attach() argument
152 REQUIRE(statsp != NULL && *statsp == NULL); in isc_stats_attach()
158 *statsp = stats; in isc_stats_attach()
162 isc_stats_detach(isc_stats_t **statsp) { in isc_stats_detach() argument
165 REQUIRE(statsp != NULL && ISC_STATS_VALID(*statsp)); in isc_stats_detach()
167 stats = *statsp; in isc_stats_detach()
168 *statsp = NULL; in isc_stats_detach()
[all …]
/freebsd-10-stable/sys/contrib/altq/altq/
Daltq_cbq.c215 get_class_stats(class_stats_t *statsp, struct rm_class *cl) in get_class_stats() argument
217 statsp->xmit_cnt = cl->stats_.xmit_cnt; in get_class_stats()
218 statsp->drop_cnt = cl->stats_.drop_cnt; in get_class_stats()
219 statsp->over = cl->stats_.over; in get_class_stats()
220 statsp->borrows = cl->stats_.borrows; in get_class_stats()
221 statsp->overactions = cl->stats_.overactions; in get_class_stats()
222 statsp->delays = cl->stats_.delays; in get_class_stats()
224 statsp->depth = cl->depth_; in get_class_stats()
225 statsp->priority = cl->pri_; in get_class_stats()
226 statsp->maxidle = cl->maxidle_; in get_class_stats()
[all …]
/freebsd-10-stable/contrib/ntp/lib/isc/include/isc/
Dstats.h39 isc_stats_create(isc_mem_t *mctx, isc_stats_t **statsp, int ncounters);
56 isc_stats_attach(isc_stats_t *stats, isc_stats_t **statsp);
67 isc_stats_detach(isc_stats_t **statsp);
/freebsd-10-stable/sys/dev/nxge/xgehal/
Dxgehal-fifo-fp.c357 xge_hal_stats_channel_info_t *statsp = &fifo->channel.stats; in xge_hal_fifo_dtr_reserve_many() local
373 statsp->total_posts_dtrs_many++; in xge_hal_fifo_dtr_reserve_many()
374 statsp->total_posts_frags_many += txdl_priv->alloc_frags; in xge_hal_fifo_dtr_reserve_many()
376 statsp->total_posts_dang_dtrs++; in xge_hal_fifo_dtr_reserve_many()
377 statsp->total_posts_dang_frags += txdl_priv->dang_frags; in xge_hal_fifo_dtr_reserve_many()