Lines Matching defs:dcurrent
803 dns_slabheader_t *header = NULL, *dcurrent = NULL;
821 for (dcurrent = header->down; dcurrent != NULL;
822 dcurrent = dcurrent->down)
824 if (dcurrent->serial == serial) {
826 dcurrent, DNS_SLABHEADERATTR_IGNORE);
915 dns_slabheader_t *current = NULL, *dcurrent = NULL;
934 for (dcurrent = current->down; dcurrent != NULL;
935 dcurrent = down_next)
937 down_next = dcurrent->down;
938 INSIST(dcurrent->serial <= dparent->serial);
939 if (dcurrent->serial == dparent->serial ||
940 IGNORE(dcurrent))
946 dns_slabheader_destroy(&dcurrent);
948 dparent = dcurrent;
991 for (dcurrent = current->down; dcurrent != NULL;
992 dcurrent = down_next)
994 down_next = dcurrent->down;
995 if (dcurrent->serial < least_serial) {
998 dparent = dcurrent;
1005 if (dcurrent != NULL) {
1007 down_next = dcurrent->down;
1008 INSIST(dcurrent->serial <= least_serial);
1009 dns_slabheader_destroy(&dcurrent);
1010 dcurrent = down_next;
1011 } while (dcurrent != NULL);