Lines Matching refs:statsp
88 create_stats(isc_mem_t *mctx, int ncounters, isc_stats_t **statsp) {
92 REQUIRE(statsp != NULL && *statsp == NULL);
127 *statsp = stats;
150 isc_stats_attach(isc_stats_t *stats, isc_stats_t **statsp) {
152 REQUIRE(statsp != NULL && *statsp == NULL);
158 *statsp = stats;
162 isc_stats_detach(isc_stats_t **statsp) {
165 REQUIRE(statsp != NULL && ISC_STATS_VALID(*statsp));
167 stats = *statsp;
168 *statsp = NULL;
288 isc_stats_create(isc_mem_t *mctx, isc_stats_t **statsp, int ncounters) {
289 REQUIRE(statsp != NULL && *statsp == NULL);
291 return (create_stats(mctx, ncounters, statsp));