Searched refs:newbuf (Results 1 - 8 of 8) sorted by relevance
/bind-9.11.3/contrib/idn/idnkit-1.0-src/lib/ |
H A D | filemapper.c | 201 unsigned long *newbuf; local 210 newbuf = realloc(b->ucs, sizeof(unsigned long) * b->size); 211 if (newbuf == NULL) 213 b->ucs = newbuf;
|
H A D | ucsmap.c | 172 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 D | ucsset.c | 311 range_t *newbuf; local 342 newbuf = realloc(ctx->ranges, ctx->size * sizeof(range_t)); 343 if (newbuf == NULL) 345 ctx->ranges = newbuf;
|
H A D | mapper.c | 390 void *newbuf; local 392 newbuf = realloc(buffers[idx], 394 if (newbuf == NULL) { 398 buffers[idx] = (unsigned long *)newbuf;
|
H A D | normalizer.c | 299 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 D | private.c | 298 unsigned char newbuf[DNS_NSEC3PARAM_BUFFERSIZE]; local 327 isc_buffer_init(&b, newbuf, sizeof(newbuf));
|
/bind-9.11.3/lib/samples/ |
H A D | sample-update.c | 434 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 D | nsupdate.c | 1284 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 76 milliseconds