Searched refs:acachep (Results 1 - 2 of 2) sorted by relevance

/bind-9.11.3/lib/dns/include/dns/
H A Dacache.h164 dns_acache_create(dns_acache_t **acachep, isc_mem_t *mctx,
178 * 'acachep' is a valid pointer, and *acachep == NULL
182 * '*acachep' is attached to the newly created cache
208 dns_acache_detach(dns_acache_t **acachep);
210 * Detach *acachep from its cache.
214 * '*acachep' points to a valid additional cache.
218 * *acachep is NULL.
220 * If '*acachep' is the last reference to the cache and the additional
/bind-9.11.3/lib/dns/
H A Dacache.c1056 dns_acache_create(dns_acache_t **acachep, isc_mem_t *mctx, argument
1063 REQUIRE(acachep != NULL && *acachep == NULL);
1143 *acachep = acache;
1184 dns_acache_detach(dns_acache_t **acachep) { argument
1189 REQUIRE(acachep != NULL && DNS_ACACHE_VALID(*acachep));
1190 acache = *acachep;
1200 *acachep = NULL;

Completed in 13 milliseconds