Home
last modified time | relevance | path

Searched refs:SSL_write (Results 1 – 13 of 13) sorted by relevance

/external/libvncserver/libvncserver/
Drfbssl_openssl.c91 while ((ret = SSL_write(ctx->ssl, buf, bufsize)) <= 0) { in rfbssl_write()
/external/boringssl/src/tool/
Dtransport_common.cc266 int ssl_ret = SSL_write(ssl, buffer, n); in TransferData()
/external/conscrypt/src/test/java/org/conscrypt/
DNativeCryptoTest.java1155 NativeCrypto.SSL_write(s, fd, callback, new byte[] { 42 }, 0, 1, in test_SSL_do_handshake_clientCertificateRequested_throws_after_renegotiate()
1807 NativeCrypto.SSL_write(ssl, fd, callback, new byte[] { 42 }, 0, 1, in test_SSL_NpnNegotiateSuccess()
1934 NativeCrypto.SSL_write(s, fd, callback, new byte[] { 42 }, 0, 1, 0); in test_SSL_renegotiate()
2104 NativeCrypto.SSL_write(s, fd, callback, BYTES, 0, BYTES.length, 0); in test_SSL_read()
2152 NativeCrypto.SSL_write(NULL, null, null, null, 0, 0, 0); in test_SSL_write()
2162 NativeCrypto.SSL_write(s, null, DUMMY_CB, null, 0, 1, 0); in test_SSL_write()
2175 NativeCrypto.SSL_write(s, INVALID_FD, null, null, 0, 1, 0); in test_SSL_write()
2188 NativeCrypto.SSL_write(s, INVALID_FD, DUMMY_CB, null, 0, 1, 0); in test_SSL_write()
2201 NativeCrypto.SSL_write(s, INVALID_FD, DUMMY_CB, new byte[1], 0, 1, 0); in test_SSL_write()
/external/libvncserver/libvncclient/
Dtls_openssl.c550 ret = SSL_write (client->tlsSession, buf + offset, (size_t)(n-offset)); in WriteToTLS()
/external/boringssl/src/crypto/err/
Dssl.errordata59 SSL,function,148,SSL_write
/external/conscrypt/src/main/java/org/conscrypt/
DOpenSSLSocketImpl.java771 NativeCrypto.SSL_write(sslNativePointer, Platform.getFileDescriptor(socket), in write()
DNativeCrypto.java1124 public static native void SSL_write(long sslNativePointer, in SSL_write() method in NativeCrypto
/external/boringssl/src/ssl/
Dssl_lib.c908 int SSL_write(SSL *s, const void *buf, int num) { in SSL_write() function
910 OPENSSL_PUT_ERROR(SSL, SSL_write, SSL_R_UNINITIALIZED); in SSL_write()
916 OPENSSL_PUT_ERROR(SSL, SSL_write, SSL_R_PROTOCOL_IS_SHUTDOWN); in SSL_write()
/external/libvncserver/x11vnc/
Dsslhelper.c2426 n = SSL_write(ssl, cbuf, cptr); in ssl_xfer()
3665 SSL_write(ssl, reply, strlen(reply)); in accept_openssl()
3703 SSL_write(ssl, reply, strlen(reply)); in accept_openssl()
/external/boringssl/src/ssl/test/
Dbssl_shim.cc525 ret = SSL_write(ssl, in, in_len); in WriteAll()
/external/boringssl/src/include/openssl/
Dssl.h2051 OPENSSL_EXPORT int SSL_write(SSL *ssl, const void *buf, int num);
/external/wpa_supplicant_8/src/crypto/
Dtls_openssl.c2984 res = SSL_write(conn->ssl, wpabuf_head(in_data), wpabuf_len(in_data)); in tls_connection_encrypt()
/external/conscrypt/src/main/native/
Dorg_conscrypt_NativeCrypto.cpp9976 int result = SSL_write(ssl, buf, len);
10136 int result = SSL_write(ssl, reinterpret_cast<const char*>(source.get()), len);
10870 NATIVE_METHOD(NativeCrypto, SSL_write, "(J" FILE_DESCRIPTOR SSL_CALLBACKS "[BIII)V"),