Searched refs:newbuf (Results 1 - 8 of 8) sorted by relevance

/bind-9.11.3/contrib/idn/idnkit-1.0-src/lib/
H A Dfilemapper.c201 unsigned long *newbuf; local
210 newbuf = realloc(b->ucs, sizeof(unsigned long) * b->size);
211 if (newbuf == NULL)
213 b->ucs = newbuf;
H A Ducsmap.c172 ucsmap_entry_t *newbuf; local
196 newbuf = realloc(ctx->entries, sizeof(*e) * ctx->entry_size);
197 if (newbuf == NULL)
199 ctx->entries = newbuf;
H A Ducsset.c311 range_t *newbuf; local
342 newbuf = realloc(ctx->ranges, ctx->size * sizeof(range_t));
343 if (newbuf == NULL)
345 ctx->ranges = newbuf;
H A Dmapper.c390 void *newbuf; local
392 newbuf = realloc(buffers[idx],
394 if (newbuf == NULL) {
398 buffers[idx] = (unsigned long *)newbuf;
H A Dnormalizer.c299 void *newbuf; local
301 newbuf = realloc(buffers[idx],
303 if (newbuf == NULL) {
307 buffers[idx] = (unsigned long *)newbuf;
/bind-9.11.3/lib/dns/
H A Dprivate.c298 unsigned char newbuf[DNS_NSEC3PARAM_BUFFERSIZE]; local
327 isc_buffer_init(&b, newbuf, sizeof(newbuf));
/bind-9.11.3/lib/samples/
H A Dsample-update.c434 isc_buffer_t source, *buf = NULL, *newbuf = NULL; local
460 result = isc_buffer_allocate(mctx, &newbuf, r.length);
462 isc_buffer_putmem(newbuf, r.base, r.length);
463 isc_buffer_usedregion(newbuf, &r);
467 ISC_LIST_APPEND(usedbuffers, newbuf, link);
/bind-9.11.3/bin/nsupdate/
H A Dnsupdate.c1284 isc_buffer_t source, *buf = NULL, *newbuf = NULL; local
1314 result = isc_buffer_allocate(gmctx, &newbuf, r.length);
1316 isc_buffer_putmem(newbuf, r.base, r.length);
1317 isc_buffer_usedregion(newbuf, &r);
1320 dns_message_takebuffer(msg, &newbuf);

Completed in 364 milliseconds