Home | History | Annotate | Download | only in dns

Lines Matching defs:dynbuf

300 	isc_buffer_t *dynbuf;
302 dynbuf = NULL;
303 isc_buffer_allocate(msg->mctx, &dynbuf, size);
305 ISC_LIST_APPEND(msg->scratchpad, dynbuf, link);
311 isc_buffer_t *dynbuf;
313 dynbuf = ISC_LIST_TAIL(msg->scratchpad);
314 INSIST(dynbuf != NULL);
316 return dynbuf;
556 isc_buffer_t *dynbuf = NULL, *next_dynbuf = NULL;
584 dynbuf = ISC_LIST_HEAD(msg->scratchpad);
585 INSIST(dynbuf != NULL);
587 isc_buffer_clear(dynbuf);
588 dynbuf = ISC_LIST_NEXT(dynbuf, link);
590 while (dynbuf != NULL) {
591 next_dynbuf = ISC_LIST_NEXT(dynbuf, link);
592 ISC_LIST_UNLINK(msg->scratchpad, dynbuf, link);
593 isc_buffer_free(&dynbuf);
594 dynbuf = next_dynbuf;
667 dynbuf = ISC_LIST_HEAD(msg->cleanup);
668 while (dynbuf != NULL) {
669 next_dynbuf = ISC_LIST_NEXT(dynbuf, link);
670 ISC_LIST_UNLINK(msg->cleanup, dynbuf, link);
671 isc_buffer_free(&dynbuf);
672 dynbuf = next_dynbuf;
770 isc_buffer_t *dynbuf = NULL;
771 isc_buffer_allocate(mctx, &dynbuf, SCRATCHPAD_SIZE);
772 ISC_LIST_APPEND(msg->scratchpad, dynbuf, link);
3057 isc_buffer_t *dynbuf = NULL;
3058 isc_buffer_allocate(msg->mctx, &dynbuf, 512);
3059 dns_name_setbuffer(signer, dynbuf);
3060 dns_message_takebuffer(msg, &dynbuf);