Home
last modified time | relevance | path

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

/thrift-3.4.0/lib/d/src/thrift/async/
Dssl.d169 auto bio = SSL_get_wbio(ssl_); in flush() local
170 enforce(bio !is null, new TSSLException("SSL_get_wbio returned null")); in flush()
172 auto rc = BIO_flush(bio); in flush()
229 auto bio = createTTransportBIO(socket_, false); in checkHandshake() local
230 SSL_set_bio(ssl_, bio, bio); in checkHandshake()
/thrift-3.4.0/lib/cpp/src/thrift/transport/
DTSSLSocket.cpp587 BIO* bio = SSL_get_wbio(ssl_); in flush() local
588 if (bio == nullptr) { in flush()
591 if (BIO_flush(bio) != 1) { in flush()
816 BIO* bio; in waitForEvent() local
819 bio = SSL_get_rbio(ssl_); in waitForEvent()
821 bio = SSL_get_wbio(ssl_); in waitForEvent()
824 if (bio == nullptr) { in waitForEvent()
828 if (BIO_get_fd(bio, &fdSocket) <= 0) { in waitForEvent()
/thrift-3.4.0/lib/d/src/thrift/transport/
Dssl.d182 auto bio = SSL_get_wbio(ssl_); in flush() local
183 enforce(bio !is null, new TSSLException("SSL_get_wbio returned null")); in flush()
185 auto rc = BIO_flush(bio); in flush()
/thrift-3.4.0/lib/d/src/thrift/internal/
Dssl_bio.d35 import deimos.openssl.bio;
/thrift-3.4.0/lib/c_glib/src/thrift/c_glib/transport/
Dthrift_ssl_socket.c394 BIO* bio = SSL_get_wbio(ssl_socket->ssl); in thrift_ssl_socket_flush() local
395 if (bio == NULL) { in thrift_ssl_socket_flush()
401 if (BIO_flush(bio) != 1) { in thrift_ssl_socket_flush()