Searched refs:rr2 (Results 1 - 3 of 3) sorted by relevance

/freebsd-11-stable/contrib/ldns/ldns/
H A Drr.h772 * \param[in] rr2 the second one
774 * -1 if rr1 comes before rr2
775 * +1 if rr2 comes before rr1
777 int ldns_rr_compare(const ldns_rr *rr1, const ldns_rr *rr2);
782 * \param[in] rr2 the second one
784 * -1 if rr1 comes before rr2
785 * +1 if rr2 comes before rr1
787 int ldns_rr_compare_no_rdata(const ldns_rr *rr1, const ldns_rr *rr2);
804 * \param[in] rr2 the second rr
807 bool ldns_rr_compare_ds(const ldns_rr *rr1, const ldns_rr *rr2);
[all...]
/freebsd-11-stable/contrib/ldns/
H A Drr.c1427 ldns_rr *rr1, *rr2; local
1438 rr2 = (ldns_rr *) sb->original_object;
1440 result = ldns_rr_compare_no_rdata(rr1, rr2);
1522 ldns_rr_compare_no_rdata(const ldns_rr *rr1, const ldns_rr *rr2) argument
1529 assert(rr2 != NULL);
1532 rr2_len = ldns_rr_uncompressed_size(rr2);
1534 if (ldns_dname_compare(ldns_rr_owner(rr1), ldns_rr_owner(rr2)) < 0) {
1536 } else if (ldns_dname_compare(ldns_rr_owner(rr1), ldns_rr_owner(rr2)) > 0) {
1540 /* should return -1 if rr1 comes before rr2, so need to do rr1 - rr2, no
1601 ldns_rr_compare(const ldns_rr *rr1, const ldns_rr *rr2) argument
1677 ldns_rr *rr2 = ldns_rr_clone(orr2); local
[all...]
H A Ddnssec.c1651 const ldns_rr *rr2 = * (const ldns_rr **) b; local
1652 if (rr1 == NULL && rr2 == NULL) {
1658 if (rr2 == NULL) {
1661 return ldns_rdf_compare(ldns_rr_owner(rr1), ldns_rr_owner(rr2));

Completed in 263 milliseconds