Lines Matching defs:actx
43 cfg_aclconfctx_t *actx;
48 actx = isc_mem_get(mctx, sizeof(*actx));
50 isc_refcount_init(&actx->references, 1);
52 actx->mctx = NULL;
53 isc_mem_attach(mctx, &actx->mctx);
54 ISC_LIST_INIT(actx->named_acl_cache);
57 actx->geoip = NULL;
60 *ret = actx;
76 cfg_aclconfctx_t *actx = *actxp;
79 if (isc_refcount_decrement(&actx->references) == 1) {
81 isc_refcount_destroy(&actx->references);
82 for (dacl = ISC_LIST_HEAD(actx->named_acl_cache); dacl != NULL;
86 ISC_LIST_UNLINK(actx->named_acl_cache, dacl,
90 isc_mem_putanddetach(&actx->mctx, actx, sizeof(*actx));