Lines Matching refs:biobuf
1199 BIO *biobuf = NULL;
1208 biobuf = BIO_new(BIO_s_mem());
1209 if (biobuf == NULL) {
1385 (void) BIO_reset(biobuf);
1386 GENERAL_NAME_print(biobuf, name);
1387 len = BIO_gets(biobuf, buf, sizeof(buf)-1);
1428 BIO_free(biobuf);
1439 if (biobuf != NULL)
1440 BIO_free(biobuf);
1568 BIO *biobuf = NULL;
1617 biobuf = BIO_new(BIO_s_mem());
1618 if (biobuf == NULL) {
1623 (void) BIO_reset(biobuf);
1626 i2a_ASN1_INTEGER(biobuf, serialNumber);
1627 len = BIO_gets(biobuf, buf, sizeof(buf)-1);
1641 (void) BIO_reset(biobuf);
1643 ASN1_TIME_print(biobuf, notBefore);
1644 len = BIO_gets(biobuf, buf, sizeof(buf)-1);
1658 (void) BIO_reset(biobuf);
1660 ASN1_TIME_print(biobuf, notAfter);
1661 len = BIO_gets(biobuf, buf, sizeof(buf)-1);
1724 BIO_free(biobuf);
1728 if (biobuf != NULL)
1729 BIO_free(biobuf);
3952 BIO *biobuf = NULL;
3968 biobuf = BIO_new_mem_buf(data, (int)len);
3969 if (biobuf == NULL) {
3982 cert = d2i_X509_bio(biobuf, NULL);
3984 cert = PEM_read_bio_X509(biobuf, NULL,
4036 BIO_free(biobuf);