Lines Matching refs:ns
138 dns_rdata_ns_t *ns = source;
143 REQUIRE(ns->common.rdtype == type);
144 REQUIRE(ns->common.rdclass == rdclass);
149 dns_name_toregion(&ns->name, ®ion);
156 dns_rdata_ns_t *ns = target;
163 ns->common.rdclass = rdata->rdclass;
164 ns->common.rdtype = rdata->type;
165 ISC_LINK_INIT(&ns->common, link);
170 dns_name_init(&ns->name, NULL);
171 RETERR(name_duporclone(&name, mctx, &ns->name));
172 ns->mctx = mctx;
178 dns_rdata_ns_t *ns = source;
182 if (ns->mctx == NULL)
185 dns_name_free(&ns->name, ns->mctx);
186 ns->mctx = NULL;