Lines Matching defs:newlist
142 dns_rdatalist_t *newlist = NULL;
159 RETERR(dns_message_gettemprdatalist(msg, &newlist));
160 newlist->rdclass = newrdata->rdclass;
161 newlist->type = newrdata->type;
162 newlist->covers = 0;
163 newlist->ttl = ttl;
164 ISC_LIST_INIT(newlist->rdata);
165 ISC_LIST_APPEND(newlist->rdata, newrdata, link);
169 RETERR(dns_rdatalist_tordataset(newlist, newset));
181 INSIST(newlist != NULL);
182 ISC_LIST_UNLINK(newlist->rdata, newrdata, link);
192 if (newlist != NULL)
193 dns_message_puttemprdatalist(msg, &newlist);