Home
last modified time | relevance | path

Searched refs:bio_write (Results 1 – 5 of 5) sorted by relevance

/external/rust/crates/quiche/deps/boringssl/src/crypto/bio/
Dpair.c232 static int bio_write(BIO *bio, const char *buf, int num_) { in bio_write() function
454 BIO_TYPE_BIO, "BIO pair", bio_write, bio_read, NULL /* puts */,
/external/boringssl/src/crypto/bio/
Dpair.c232 static int bio_write(BIO *bio, const char *buf, int num_) { in bio_write() function
454 BIO_TYPE_BIO, "BIO pair", bio_write, bio_read, NULL /* puts */,
/external/python/pyopenssl/tests/
Dtest_ssl.py377 write.bio_write(dirty)
2175 connection.bio_write(bad_bio)
2184 connection.bio_write(b"xy")
2185 connection.bio_write(bytearray(b"za"))
2187 connection.bio_write(u"deprecated")
3604 clientSSL.bio_write(b"foo")
/external/python/pyopenssl/doc/api/
Dssl.rst156 the :py:meth:`bio_read`, :py:meth:`bio_write`, and :py:meth:`bio_shutdown`
/external/python/pyopenssl/src/OpenSSL/
DSSL.py1786 def bio_write(self, buf): member in Connection