Lines Matching refs:ot
155 dns_difftuple_t *ot, *next_ot;
172 for (ot = ISC_LIST_HEAD(diff->tuples); ot != NULL;
173 ot = next_ot)
175 next_ot = ISC_LIST_NEXT(ot, link);
176 if (dns_name_caseequal(&ot->name, &(*tuplep)->name) &&
177 dns_rdata_compare(&ot->rdata, &(*tuplep)->rdata) == 0 &&
178 ot->ttl == (*tuplep)->ttl)
180 ISC_LIST_UNLINK(diff->tuples, ot, link);
181 if ((*tuplep)->op == ot->op) {
187 dns_difftuple_free(&ot);