Lines Matching refs:text_buffer
128 BIO *text_buffer = NULL; in compare_sct_list_printout() local
132 if (!TEST_ptr(text_buffer = BIO_new(BIO_s_mem()))) in compare_sct_list_printout()
135 SCT_LIST_print(sct, text_buffer, 0, "\n", NULL); in compare_sct_list_printout()
138 if (!TEST_true(BIO_write(text_buffer, "\0", 1))) in compare_sct_list_printout()
141 BIO_get_mem_data(text_buffer, &actual_output); in compare_sct_list_printout()
147 BIO_free(text_buffer); in compare_sct_list_printout()
154 BIO *text_buffer = NULL; in compare_extension_printout() local
158 if (!TEST_ptr(text_buffer = BIO_new(BIO_s_mem())) in compare_extension_printout()
159 || !TEST_true(X509V3_EXT_print(text_buffer, extension, in compare_extension_printout()
164 if (!TEST_true(BIO_write(text_buffer, "\0", 1))) in compare_extension_printout()
167 BIO_get_mem_data(text_buffer, &actual_output); in compare_extension_printout()
174 BIO_free(text_buffer); in compare_extension_printout()