Searched defs:acache (Results 1 - 6 of 6) sorted by relevance

/bind-9.11.3/lib/dns/
H A Drdataset.c689 dns_acache_t *acache,
707 if (acache != NULL && rdataset->methods->getadditional != NULL) {
709 qtype, acache,
722 dns_acache_t *acache,
732 if (acache != NULL && rdataset->methods->setadditional != NULL) {
734 qtype, acache, zone,
743 dns_rdataset_putadditional(dns_acache_t *acache, argument
751 if (acache != NULL && rdataset->methods->putadditional != NULL) {
752 return ((rdataset->methods->putadditional)(acache, rdataset,
686 dns_rdataset_getadditional(dns_rdataset_t *rdataset, dns_rdatasetadditional_t type, dns_rdatatype_t qtype, dns_acache_t *acache, dns_zone_t **zonep, dns_db_t **dbp, dns_dbversion_t **versionp, dns_dbnode_t **nodep, dns_name_t *fname, dns_message_t *msg, isc_stdtime_t now) argument
719 dns_rdataset_setadditional(dns_rdataset_t *rdataset, dns_rdatasetadditional_t type, dns_rdatatype_t qtype, dns_acache_t *acache, dns_zone_t *zone, dns_db_t *db, dns_dbversion_t *version, dns_dbnode_t *node, dns_name_t *fname) argument
H A Dacache.c9 /* $Id: acache.c,v 1.22 2008/02/07 23:46:54 tbox Exp $ */
29 #include <dns/acache.h>
44 #define DNS_ACACHE_VALID(acache) ISC_MAGIC_VALID(acache, ACACHE_MAGIC)
56 "acache %p: %s", acache, (m))
61 "acache %p: %s", (a), (m))
112 /* Locked by acache lock */
145 dns_acache_t *acache; member in struct:acache_cleaner
160 Locked by acache loc
223 dns_acache_t *acache; member in struct:dns_acacheentry
284 reset_stats(dns_acache_t *acache) argument
300 check_noentry(dns_acache_t *acache) argument
312 shutdown_entries(dns_acache_t *acache) argument
353 shutdown_buckets(dns_acache_t *acache) argument
379 dns_acache_t *acache; local
400 unlink_dbentries(dns_acache_t *acache, dns_acacheentry_t *ent) argument
425 dns_acache_t *acache; local
444 destroy(dns_acache_t *acache) argument
477 finddbent(dns_acache_t *acache, dns_db_t *db, dbentry_t **dbentryp) argument
507 clear_entry(dns_acache_t *acache, dns_acacheentry_t *entry) argument
552 acache_cleaner_init(dns_acache_t *acache, isc_timermgr_t *timermgr, acache_cleaner_t *cleaner) argument
641 dns_acache_t *acache = cleaner->acache; local
677 dns_acache_t *acache = cleaner->acache; local
818 dns_acache_t *acache = cleaner->acache; local
980 dns_acache_t *acache = arg; local
1010 dns_acache_t *acache = event->ev_arg; local
1061 dns_acache_t *acache; local
1178 dns_acache_countquerymiss(dns_acache_t *acache) argument
1185 dns_acache_t *acache; local
1215 dns_acache_shutdown(dns_acache_t *acache) argument
1247 dns_acache_setdb(dns_acache_t *acache, dns_db_t *db) argument
1293 dns_acache_putdb(dns_acache_t *acache, dns_db_t *db) argument
1385 dns_acache_createentry(dns_acache_t *acache, dns_db_t *origdb, void (*callback)(dns_acacheentry_t *, void **), void *cbarg, dns_acacheentry_t **entryp) argument
1467 dns_acache_t *acache; local
1553 dns_acache_setentry(dns_acache_t *acache, dns_acacheentry_t *entry, dns_zone_t *zone, dns_db_t *db, dns_dbversion_t *version, dns_dbnode_t *node, dns_name_t *fname) argument
1679 dns_acache_t *acache; local
1748 dns_acache_setcleaninginterval(dns_acache_t *acache, unsigned int t) argument
1798 dns_acache_setcachesize(dns_acache_t *acache, size_t size) argument
[all...]
H A Drbtdb.c44 #include <dns/acache.h>
769 dns_acache_t *acache,
780 dns_acache_t *acache,
786 static isc_result_t rdataset_putadditional(dns_acache_t *acache,
1621 * acache entries when the node can be freed.
9751 dns_rdatatype_t qtype, dns_acache_t *acache,
9770 UNUSED(acache);
9799 dns_acache_countquerymiss(acache);
9805 dns_acache_countquerymiss(acache);
9897 dns_rdatatype_t qtype, dns_acache_t *acache,
9750 rdataset_getadditional(dns_rdataset_t *rdataset, dns_rdatasetadditional_t type, dns_rdatatype_t qtype, dns_acache_t *acache, dns_zone_t **zonep, dns_db_t **dbp, dns_dbversion_t **versionp, dns_dbnode_t **nodep, dns_name_t *fname, dns_message_t *msg, isc_stdtime_t now) argument
9896 rdataset_setadditional(dns_rdataset_t *rdataset, dns_rdatasetadditional_t type, dns_rdatatype_t qtype, dns_acache_t *acache, dns_zone_t *zone, dns_db_t *db, dns_dbversion_t *version, dns_dbnode_t *node, dns_name_t *fname) argument
10029 rdataset_putadditional(dns_acache_t *acache, dns_rdataset_t *rdataset, dns_rdatasetadditional_t type, dns_rdatatype_t qtype) argument
[all...]
H A Dzone.c33 #include <dns/acache.h>
306 dns_acache_t *acache; member in struct:dns_zone
1025 zone->acache = NULL;
1195 if (zone->acache != NULL) {
1196 dns_acache_detach(&zone->acache);
1596 dns_zone_setacache(dns_zone_t *zone, dns_acache_t *acache) { argument
1598 REQUIRE(acache != NULL);
1601 if (zone->acache != NULL)
1602 dns_acache_detach(&zone->acache);
1603 dns_acache_attach(acache,
[all...]
/bind-9.11.3/lib/dns/include/dns/
H A Dview.h86 dns_acache_t * acache; member in struct:dns_view
/bind-9.11.3/bin/named/include/named/
H A Dserver.h111 dns_acache_t *acache; member in struct:ns_server

Completed in 69 milliseconds