Searched defs:databuf (Results 1 - 7 of 7) sorted by relevance

/bind-9.6-ESV-R11/contrib/sdb/bdb/
H A Dzone2bdb.c67 isc_buffer_t keybuf, databuf; local
78 isc_buffer_init(&databuf, rdatatext, MAX_RDATATEXT);
80 dns_ttl_totext(ttl, ISC_FALSE, &databuf);
81 *(char *)isc_buffer_used(&databuf) = ' ';
82 isc_buffer_add(&databuf, 1);
84 dns_rdatatype_totext(rdata->type, &databuf); /* XXX private data */
85 *(char *)isc_buffer_used(&databuf) = ' ';
86 isc_buffer_add(&databuf, 1);
88 dns_rdata_totext(rdata, NULL, &databuf);
90 data.data = isc_buffer_base(&databuf);
[all...]
/bind-9.6-ESV-R11/bin/tests/dst/
H A Ddst_test.c47 isc_buffer_t databuf, sigbuf; local
57 isc_buffer_constinit(&databuf, data, strlen(data));
58 isc_buffer_add(&databuf, strlen(data));
59 isc_buffer_usedregion(&databuf, &datareg);
H A Dt_dst.c102 isc_buffer_t databuf, sigbuf; local
107 isc_buffer_constinit(&databuf, data, strlen(data));
108 isc_buffer_add(&databuf, strlen(data));
109 isc_buffer_usedregion(&databuf, &datareg);
650 isc_buffer_t databuf; local
720 isc_buffer_init(&databuf, data, sb.st_size);
721 isc_buffer_add(&databuf, sb.st_size);
722 isc_buffer_usedregion(&databuf, &datareg);
/bind-9.6-ESV-R11/lib/dns/
H A Drootns.c269 char databuf[sizeof("xxxx:xxxx:xxxx:xxxx:xxxx:xxxx:123.123.123.123")]; local
281 isc_buffer_init(&buffer, databuf, sizeof(databuf) - 1);
284 databuf[isc_buffer_usedlength(&buffer)] = '\0';
290 sep, viewname, namebuf, typebuf, databuf);
296 databuf);
H A Ddnssec.c203 isc_buffer_t *databuf = NULL; local
266 ret = isc_buffer_allocate(mctx, &databuf, sigsize + 256 + 18);
272 sig.common.rdtype, &sig, databuf);
362 isc_buffer_free(&databuf);
696 isc_buffer_t headerbuf, databuf, sigbuf; local
741 isc_buffer_init(&databuf, data, sizeof(data));
752 &sig, &databuf));
753 isc_buffer_usedregion(&databuf, &r);
H A Dtsig.c685 isc_buffer_t databuf, sigbuf; local
727 isc_buffer_init(&databuf, data, sizeof(data));
770 isc_buffer_putuint16(&databuf, querytsig.siglen);
771 if (isc_buffer_availablelength(&databuf) <
776 isc_buffer_putmem(&databuf, querytsig.signature,
778 isc_buffer_usedregion(&databuf, &r);
819 isc_buffer_clear(&databuf);
820 isc_buffer_putuint16(&databuf, dns_rdataclass_any);
821 isc_buffer_putuint32(&databuf, 0); /* ttl */
822 isc_buffer_usedregion(&databuf,
976 isc_buffer_t databuf; local
1294 isc_buffer_t databuf; local
[all...]
/bind-9.6-ESV-R11/bin/rndc/
H A Drndc.c78 static unsigned char databuf[2048]; variable
308 message.rstart = databuf + 4;
309 message.rend = databuf + sizeof(databuf);
311 len = sizeof(databuf) - REGION_SIZE(message);
312 isc_buffer_init(&b, databuf, 4);
315 r.base = databuf;
370 message.rstart = databuf + 4;
371 message.rend = databuf + sizeof(databuf);
[all...]

Completed in 3628 milliseconds