Lines Matching refs:newlist
2954 dns_rdatalist_t *newlist;
2959 newlist = isc_mem_get(mctx, new_len * sizeof(*newlist));
2960 if (newlist == NULL)
2971 newlist[rdlcount] = *this;
2972 ISC_LIST_APPEND(*current, &newlist[rdlcount], link);
2984 newlist[rdlcount] = *this;
2985 ISC_LIST_APPEND(*glue, &newlist[rdlcount], link);
2992 return (newlist);
3004 dns_rdata_t *newlist;
3010 newlist = isc_mem_get(mctx, new_len * sizeof(*newlist));
3011 if (newlist == NULL)
3013 memset(newlist, 0, new_len * sizeof(*newlist));
3028 newlist[rdcount] = *rdata;
3029 ISC_LIST_APPEND(this->rdata, &newlist[rdcount], link);
3048 newlist[rdcount] = *rdata;
3049 ISC_LIST_APPEND(this->rdata, &newlist[rdcount], link);
3057 return (newlist);