Lines Matching refs:ztp
66 dns_zt_create(isc_mem_t *mctx, dns_rdataclass_t rdclass, dns_zt_t **ztp)
71 REQUIRE(ztp != NULL && *ztp == NULL);
90 *ztp = zt;
168 dns_zt_attach(dns_zt_t *zt, dns_zt_t **ztp) {
171 REQUIRE(ztp != NULL && *ztp == NULL);
181 *ztp = zt;
191 zt_flushanddetach(dns_zt_t **ztp, isc_boolean_t need_flush) {
195 REQUIRE(ztp != NULL && VALID_ZT(*ztp));
197 zt = *ztp;
217 *ztp = NULL;
221 dns_zt_flushanddetach(dns_zt_t **ztp) {
222 zt_flushanddetach(ztp, ISC_TRUE);
226 dns_zt_detach(dns_zt_t **ztp) {
227 zt_flushanddetach(ztp, ISC_FALSE);