Searched refs:bio_method (Results 1 – 3 of 3) sorted by relevance
/external/rust/crates/quiche/deps/boringssl/src/ssl/ |
D | ssl_test.cc | 6034 UniquePtr<BIO_METHOD> bio_method(BIO_meth_new(0, nullptr)); in TEST_P() local 6035 ASSERT_TRUE(bio_method); in TEST_P() 6037 bio_method.get(), [](BIO *bio, char *out, int len) -> int { in TEST_P() 6047 bio_method.get(), [](BIO *bio, const char *in, int len) -> int { in TEST_P() 6057 bio_method.get(), [](BIO *bio, int cmd, long larg, void *parg) -> long { in TEST_P() 6065 UniquePtr<BIO> client_bio(BIO_new(bio_method.get())); in TEST_P() 6070 UniquePtr<BIO> server_bio(BIO_new(bio_method.get())); in TEST_P()
|
/external/boringssl/src/ssl/ |
D | ssl_test.cc | 6191 UniquePtr<BIO_METHOD> bio_method(BIO_meth_new(0, nullptr)); in TEST_P() local 6192 ASSERT_TRUE(bio_method); in TEST_P() 6194 bio_method.get(), [](BIO *bio, char *out, int len) -> int { in TEST_P() 6204 bio_method.get(), [](BIO *bio, const char *in, int len) -> int { in TEST_P() 6214 bio_method.get(), [](BIO *bio, int cmd, long larg, void *parg) -> long { in TEST_P() 6222 UniquePtr<BIO> client_bio(BIO_new(bio_method.get())); in TEST_P() 6227 UniquePtr<BIO> server_bio(BIO_new(bio_method.get())); in TEST_P()
|
/external/python/cryptography/src/cryptography/hazmat/backends/openssl/ |
D | backend.py | 466 bio_method = self._lib.BIO_s_mem() 467 self.openssl_assert(bio_method != self._ffi.NULL) 468 bio = self._lib.BIO_new(bio_method)
|