Home | History | Annotate | Download | only in dns

Lines Matching defs:dcurrent

1573 	rdatasetheader_t *header, *dcurrent;
1590 for (dcurrent = header->down; dcurrent != NULL;
1591 dcurrent = dcurrent->down)
1593 if (dcurrent->serial == serial) {
1594 RDATASET_ATTR_SET(dcurrent,
1711 rdatasetheader_t *current, *dcurrent, *down_next, *dparent;
1731 for (dcurrent = current->down; dcurrent != NULL;
1732 dcurrent = down_next)
1734 down_next = dcurrent->down;
1735 INSIST(dcurrent->serial <= dparent->serial);
1736 if (dcurrent->serial == dparent->serial ||
1737 IGNORE(dcurrent))
1743 free_rdataset(rbtdb, mctx, dcurrent);
1745 dcurrent;
1788 for (dcurrent = current->down; dcurrent != NULL;
1789 dcurrent = down_next)
1791 down_next = dcurrent->down;
1792 if (dcurrent->serial < least_serial) {
1795 dparent = dcurrent;
1802 if (dcurrent != NULL) {
1804 down_next = dcurrent->down;
1805 INSIST(dcurrent->serial <= least_serial);
1806 free_rdataset(rbtdb, mctx, dcurrent);
1807 dcurrent = down_next;
1808 } while (dcurrent != NULL);