Home | History | Annotate | Download | only in named

Lines Matching refs:zle

11762 	struct zonelistentry *zle;
11764 zle = isc_mem_get(dctx->mctx, sizeof *zle);
11765 zle->zone = NULL;
11766 dns_zone_attach(zone, &zle->zone);
11767 ISC_LINK_INIT(zle, link);
11768 ISC_LIST_APPEND(ISC_LIST_TAIL(dctx->viewlist)->zonelist, zle, link);
11804 struct zonelistentry *zle;
11809 zle = ISC_LIST_HEAD(vle->zonelist);
11810 while (zle != NULL) {
11811 ISC_LIST_UNLINK(vle->zonelist, zle, link);
11812 dns_zone_detach(&zle->zone);
11813 isc_mem_put(dctx->mctx, zle, sizeof *zle);
11814 zle = ISC_LIST_HEAD(vle->zonelist);