Lines Matching defs:rds

468 	dns_rdataset_t *rds = NULL, *next_rds = NULL;
470 ISC_LIST_FOREACH_SAFE (name->list, rds, link, next_rds) {
471 ISC_LIST_UNLINK(name->list, rds, link);
473 dns__message_putassociatedrdataset(msg, &rds);
826 rds_hash(dns_rdataset_t *rds) {
830 isc_hash32_hash(&state, &rds->rdclass, sizeof(rds->rdclass), true);
831 isc_hash32_hash(&state, &rds->type, sizeof(rds->type), true);
832 isc_hash32_hash(&state, &rds->covers, sizeof(rds->covers), true);
839 const dns_rdataset_t *rds = node;
842 return rds->rdclass == key->rdclass && rds->type == key->type &&
843 rds->covers == key->covers;
849 dns_rdataset_t *rds = NULL;
854 ISC_LIST_FOREACH_REV (name->list, rds, link) {
855 if (rds->type == type && rds->covers == covers) {
856 SET_IF_NOT_NULL(rdatasetp, rds);
1196 dns_rdataset_t *rds = NULL;
1197 ISC_LIST_FOREACH (name->list, rds, link) {
1198 switch (rds->type) {
1214 switch (rds->covers) {
1966 wrong_priority(dns_rdataset_t *rds, int pass, dns_rdatatype_t preferred_glue) {
1972 if (rds->rdclass != dns_rdataclass_in) {
1976 switch (rds->type) {
1979 if (preferred_glue == rds->type) {
2480 dns_rdataset_t *rds = NULL;
2481 ISC_LIST_FOREACH (name->list, rds, link) {
2482 rds->attributes &= ~DNS_RDATASETATTR_RENDERED;
3457 dns_rdataset_t *rds = NULL;
3458 ISC_LIST_FOREACH (name->list, rds, link) {
3460 rds->type == dns_rdatatype_soa)
3479 name, rds, style, target);
3482 name, rds, style, &msg->indent, target);
4883 rdataset_soa_min(dns_rdataset_t *rds, dns_ttl_t *ttlp) {
4886 for (result = dns_rdataset_first(rds); result == ISC_R_SUCCESS;
4887 result = dns_rdataset_next(rds))
4893 dns_rdataset_current(rds, &rdata);
4922 *ttlp = ISC_MIN(rds->ttl, dns_soa_getminimum(&rdata));
4945 dns_rdataset_t *rds = NULL;
4946 ISC_LIST_FOREACH (name->list, rds, link) {
4947 if ((rds->attributes & DNS_RDATASETATTR_RENDERED) == 0)
4952 result = rdataset_soa_min(rds, ttlp);