Lines Matching defs:rdl
263 dns_rdatalist_t rdl;
287 rdl.type = type;
288 rdl.covers = covers;
289 rdl.rdclass = t->rdata.rdclass;
290 rdl.ttl = t->ttl;
291 ISC_LIST_INIT(rdl.rdata);
292 ISC_LINK_INIT(&rdl, link);
315 if (t->ttl != rdl.ttl && warn)
323 (unsigned long) rdl.ttl);
324 ISC_LIST_APPEND(rdl.rdata, &t->rdata, link);
332 CHECK(dns_rdatalist_tordataset(&rdl, &rds));
443 dns_rdatalist_t rdl;
450 rdl.type = type;
451 rdl.covers = covers;
452 rdl.rdclass = t->rdata.rdclass;
453 rdl.ttl = t->ttl;
454 ISC_LIST_INIT(rdl.rdata);
455 ISC_LINK_INIT(&rdl, link);
461 ISC_LIST_APPEND(rdl.rdata, &t->rdata, link);
469 CHECK(dns_rdatalist_tordataset(&rdl, &rds));
537 dns_rdatalist_t *rdl, dns_rdataset_t *rds)
540 REQUIRE(rdl != NULL);
543 rdl->type = t->rdata.type;
544 rdl->rdclass = t->rdata.rdclass;
545 rdl->ttl = t->ttl;
546 ISC_LIST_INIT(rdl->rdata);
547 ISC_LINK_INIT(rdl, link);
551 ISC_LIST_APPEND(rdl->rdata, rdata, link);
552 return (dns_rdatalist_tordataset(rdl, rds));
575 dns_rdatalist_t rdl;
579 result = diff_tuple_tordataset(t, &rd, &rdl, &rds);