Lines Matching defs:actx
42 cfg_aclconfctx_t *actx;
47 actx = isc_mem_get(mctx, sizeof(*actx));
49 isc_refcount_init(&actx->references, 1);
51 actx->mctx = NULL;
52 isc_mem_attach(mctx, &actx->mctx);
53 ISC_LIST_INIT(actx->named_acl_cache);
56 actx->geoip = NULL;
59 *ret = actx;
75 cfg_aclconfctx_t *actx = *actxp;
78 if (isc_refcount_decrement(&actx->references) == 1) {
80 isc_refcount_destroy(&actx->references);
81 for (dacl = ISC_LIST_HEAD(actx->named_acl_cache); dacl != NULL;
85 ISC_LIST_UNLINK(actx->named_acl_cache, dacl,
89 isc_mem_putanddetach(&actx->mctx, actx, sizeof(*actx));