Lines Matching defs:buf2
27 char buf1[8192], buf2[8192];
42 while (BIO_gets(membio, buf2, sizeof(buf2)) > 0)
43 if (BIO_puts(newfile, buf2) <= 0) {
54 if (BIO_gets(membio, buf2, sizeof(buf2)) <= 0) {
59 strip_line_ends(buf2);
63 if (strlen(buf2) > line_len)
64 buf2[line_len] = '\0';
66 if (line_len != strlen(buf2)) {
69 TEST_info("%s", buf2);
75 buf2[i] = '?';
77 if (!TEST_str_eq(buf1, buf2))