Lines Matching defs:text
573 isc_buffer_t *text = NULL;
578 result = isc_buffer_allocate(keytable->mctx, &text, 4096);
582 result = dns_keytable_totext(keytable, &text);
584 if (isc_buffer_usedlength(text) != 0) {
585 (void) putstr(&text, "\n");
587 (void) putstr(&text, "none");
589 (void) putstr(&text, "could not dump key table: ");
590 (void) putstr(&text, isc_result_totext(result));
593 fprintf(fp, "%.*s", (int) isc_buffer_usedlength(text),
594 (char *) isc_buffer_base(text));
596 isc_buffer_free(&text);
601 dns_keytable_totext(dns_keytable_t *keytable, isc_buffer_t **text) {
608 REQUIRE(text != NULL && *text != NULL);
629 result = putstr(text, obuf);