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

/freebsd-9.3-release/contrib/bind9/lib/dns/include/dns/
H A Dacache.h172 dns_acache_create(dns_acache_t **acachep, isc_mem_t *mctx,
186 * 'acachep' is a valid pointer, and *acachep == NULL
190 * '*acachep' is attached to the newly created cache
216 dns_acache_detach(dns_acache_t **acachep);
218 * Detach *acachep from its cache.
222 * '*acachep' points to a valid additional cache.
226 * *acachep is NULL.
228 * If '*acachep' is the last reference to the cache and the additional
/freebsd-9.3-release/contrib/bind9/lib/dns/
H A Dacache.c1043 dns_acache_create(dns_acache_t **acachep, isc_mem_t *mctx, argument
1050 REQUIRE(acachep != NULL && *acachep == NULL);
1130 *acachep = acache;
1171 dns_acache_detach(dns_acache_t **acachep) { argument
1176 REQUIRE(acachep != NULL && DNS_ACACHE_VALID(*acachep));
1177 acache = *acachep;
1187 *acachep = NULL;

Completed in 94 milliseconds