Lines Matching refs:ot
152 dns_difftuple_t *ot, *next_ot;
169 for (ot = ISC_LIST_HEAD(diff->tuples); ot != NULL;
170 ot = next_ot)
172 next_ot = ISC_LIST_NEXT(ot, link);
173 if (dns_name_equal(&ot->name, &(*tuplep)->name) &&
174 dns_rdata_compare(&ot->rdata, &(*tuplep)->rdata) == 0 &&
175 ot->ttl == (*tuplep)->ttl)
177 ISC_LIST_UNLINK(diff->tuples, ot, link);
178 if ((*tuplep)->op == ot->op) {
184 dns_difftuple_free(&ot);