Home
last modified time | relevance | path

Searched refs:ScopedBIO (Results 1 – 11 of 11) sorted by relevance

/external/boringssl/src/ssl/test/
Dasync_bio.cc153 ScopedBIO AsyncBioCreate() { in AsyncBioCreate()
154 return ScopedBIO(BIO_new(&g_async_bio_method)); in AsyncBioCreate()
157 ScopedBIO AsyncBioCreateDatagram() { in AsyncBioCreateDatagram()
158 ScopedBIO ret(BIO_new(&g_async_bio_method)); in AsyncBioCreateDatagram()
Dasync_bio.h28 ScopedBIO AsyncBioCreate();
33 ScopedBIO AsyncBioCreateDatagram();
Dpacketed_bio.h41 ScopedBIO PacketedBioCreate(timeval *out_timeout);
Dpacketed_bio.cc211 ScopedBIO PacketedBioCreate(timeval *out_timeout) { in PacketedBioCreate()
212 ScopedBIO bio(BIO_new(&g_packeted_bio_method)); in PacketedBioCreate()
Dbssl_shim.cc124 ScopedBIO bio(BIO_new(BIO_s_file())); in LoadPrivateKey()
669 ScopedBIO bio(BIO_new_socket(sock, BIO_NOCLOSE)); in DoExchange()
674 ScopedBIO packeted = in DoExchange()
680 ScopedBIO async_scoped = in DoExchange()
/external/boringssl/src/crypto/bio/
Dbio_test.cc106 ScopedBIO bio(BIO_new_connect(hostname)); in TestSocketConnect()
219 ScopedBIO bio1_scoper(bio1); in TestZeroCopyBioPairs()
220 ScopedBIO bio2_scoper(bio2); in TestZeroCopyBioPairs()
290 ScopedBIO bio(BIO_new(BIO_s_mem())); in TestPrintf()
334 ScopedBIO bio(BIO_new_mem_buf(const_cast<uint8_t*>(data), data_len)); in ReadASN1()
/external/boringssl/src/tool/
Dclient.cc78 ScopedBIO bio(BIO_new(BIO_s_file())); in LoadPrivateKey()
222 ScopedBIO bio(BIO_new_socket(sock, BIO_CLOSE)); in Client()
/external/boringssl/src/crypto/pkcs8/
Dpkcs12_test.cc709 ScopedBIO bio(BIO_new_mem_buf((void*) der, der_len)); in TestCompat()
/external/boringssl/src/crypto/cmac/
Dcmac_test.cc25 ScopedBIO bio(BIO_new_fp(stderr, 0 /* don't close */)); in dump()
/external/boringssl/src/crypto/test/
Dscoped_types.h97 using ScopedBIO = ScopedOpenSSLType<BIO, BIO_vfree>; variable
/external/boringssl/src/crypto/evp/
Devp_test.cc110 ScopedBIO bio(BIO_new_mem_buf(const_cast<char*>(block.data()), block.size())); in ImportPrivateKey()