Lines Matching defs:cmctx
172 dns_cache_create(isc_mem_t *cmctx, isc_taskmgr_t *taskmgr,
177 return (dns_cache_create3(cmctx, cmctx, taskmgr, timermgr, rdclass,
182 dns_cache_create2(isc_mem_t *cmctx, isc_taskmgr_t *taskmgr,
187 return (dns_cache_create3(cmctx, cmctx, taskmgr, timermgr, rdclass,
193 dns_cache_create3(isc_mem_t *cmctx, isc_mem_t *hmctx, isc_taskmgr_t *taskmgr,
205 REQUIRE(cmctx != NULL);
210 cache = isc_mem_get(cmctx, sizeof(*cache));
215 isc_mem_attach(cmctx, &cache->mctx);
230 cache->db_type = isc_mem_strdup(cmctx, db_type);
248 cache->db_argv = isc_mem_get(cmctx,
260 cache->db_argv[i] = isc_mem_strdup(cmctx,
310 isc_mem_free(cmctx, cache->db_argv[i]);
312 isc_mem_put(cmctx, cache->db_argv,
315 isc_mem_free(cmctx, cache->db_type);