Searched refs:SSL_write (Results 1 - 25 of 34) sorted by relevance

12

/external/libmicrohttpd/src/microspdy/
H A Dio_openssl.c225 int n = SSL_write(session->io_context,
/external/libvncserver/libvncserver/
H A Drfbssl_openssl.c91 while ((ret = SSL_write(ctx->ssl, buf, bufsize)) <= 0) {
/external/boringssl/src/tool/
H A Dtransport_common.cc273 int ssl_ret = SSL_write(ssl, buffer, n);
284 fprintf(stderr, "Short write from SSL_write.\n");
/external/libweave/examples/provider/
H A Dssl_stream.cc104 int res = SSL_write(ssl_.get(), buffer, size_to_write);
/external/curl/lib/
H A Dsetup-vms.h304 #define SSL_write SSL_WRITE macro
/external/conscrypt/src/test/java/org/conscrypt/
H A DNativeCryptoTest.java1126 * SSL_read, SSL_write, and SSL_shutdown.
1165 NativeCrypto.SSL_write(s, fd, callback, new byte[] { 42 }, 0, 1,
1907 NativeCrypto.SSL_write(ssl, fd, callback, new byte[] { 42 }, 0, 1,
2052 NativeCrypto.SSL_write(s, fd, callback, new byte[] { 42 }, 0, 1, 0);
2222 NativeCrypto.SSL_write(s, fd, callback, BYTES, 0, BYTES.length, 0);
2270 NativeCrypto.SSL_write(NULL, null, null, null, 0, 0, 0);
2280 NativeCrypto.SSL_write(s, null, DUMMY_CB, null, 0, 1, 0);
2293 NativeCrypto.SSL_write(s, INVALID_FD, null, null, 0, 1, 0);
2306 NativeCrypto.SSL_write(s, INVALID_FD, DUMMY_CB, null, 0, 1, 0);
2319 NativeCrypto.SSL_write(
[all...]
/external/libvncserver/libvncclient/
H A Dtls_openssl.c576 ret = SSL_write (client->tlsSession, buf + offset, (size_t)(n-offset));
/external/curl/lib/vtls/
H A Dcyassl.c499 int rc = SSL_write(conn->ssl[sockindex].handle, mem, memlen);
507 /* there's data pending, re-invoke SSL_write() */
H A Dopenssl.c2985 /* SSL_write() is said to return 'int' while write() and send() returns
2997 rc = SSL_write(conn->ssl[sockindex].handle, mem, memlen);
3011 failf(conn->data, "SSL_write() returned SYSCALL, errno = %d",
3019 failf(conn->data, "SSL_write() error: %s",
3025 failf(conn->data, "SSL_write() return error %d", err);
/external/libbrillo/brillo/streams/
H A Dtls_stream.cc187 int ret = SSL_write(ssl_.get(), buffer, size_int);
195 // Reads might be required for SSL_write() because of possible TLS
/external/libmicrohttpd/src/examples/
H A Dmhd2spdy_spdy.c167 rv = SSL_write(connection->ssl, data, length);
/external/webrtc/webrtc/base/
H A Dopenssladapter.cc491 int code = SSL_write(ssl_, pv, checked_cast<int>(cb));
512 Error("SSL_write", (code ? code : -1), false);
H A Dopensslstreamadapter.cc530 int code = SSL_write(ssl_, data, checked_cast<int>(data_len));
549 Error("SSL_write", (ssl_error ? ssl_error : -1), false);
/external/conscrypt/src/main/java/org/conscrypt/
H A DNativeCrypto.java1168 * Writes with the native SSL_write function to the encrypted data stream.
1170 public static native void SSL_write(long sslNativePointer, method in class:NativeCrypto
H A DOpenSSLSocketImpl.java367 // TODO: SSL_read and SSL_write return -1 when interrupted, but SSL_do_handshake
783 * to make sure we serialize callers of SSL_write. Thread is
824 NativeCrypto.SSL_write(sslNativePointer, Platform.getFileDescriptor(socket),
/external/libevent/
H A Dbufferevent_openssl.c302 /* If this value is greater than 0, then the last SSL_write blocked,
658 /* SSL_write will (reasonably) return 0 if we tell it to
664 r = SSL_write(bev_ssl->ssl, space[i].iov_base,
/external/libmicrohttpd/src/testspdy/
H A Dtest_new_connection.c233 rv = SSL_write(connection->ssl, data, length);
H A Dtest_request_response.c215 rv = SSL_write(connection->ssl, data, length);
/external/tlsdate/src/
H A Dtlsdate-helper.c189 r = SSL_write(ssl, string, n);
/external/boringssl/src/ssl/test/
H A Dbssl_shim.cc917 // operations. It returns the result of the final |SSL_write| call.
922 ret = SSL_write(ssl, in, in_len);
/external/boringssl/include/openssl/
H A Dssl.h315 /* SSL_write writes up to |num| bytes from |buf| into |ssl|. It implicitly runs
320 * In TLS, a non-blocking |SSL_write| differs from non-blocking |write| in that
321 * a failed |SSL_write| still commits to the data passed in. When retrying, the
328 * By default, in TLS, |SSL_write| will not return success until all |num| bytes
330 * allows |SSL_write| to complete with a partial result when only part of the
335 * different buffer freely. A single call to |SSL_write| only ever writes a
341 OPENSSL_EXPORT int SSL_write(SSL *ssl, const void *buf, int num);
595 /* SSL_MODE_ENABLE_PARTIAL_WRITE, in TLS, allows |SSL_write| to complete with a
601 * |SSL_write| with a different buffer. However, |SSL_write| stil
[all...]
/external/boringssl/src/include/openssl/
H A Dssl.h315 /* SSL_write writes up to |num| bytes from |buf| into |ssl|. It implicitly runs
320 * In TLS, a non-blocking |SSL_write| differs from non-blocking |write| in that
321 * a failed |SSL_write| still commits to the data passed in. When retrying, the
328 * By default, in TLS, |SSL_write| will not return success until all |num| bytes
330 * allows |SSL_write| to complete with a partial result when only part of the
335 * different buffer freely. A single call to |SSL_write| only ever writes a
341 OPENSSL_EXPORT int SSL_write(SSL *ssl, const void *buf, int num);
595 /* SSL_MODE_ENABLE_PARTIAL_WRITE, in TLS, allows |SSL_write| to complete with a
601 * |SSL_write| with a different buffer. However, |SSL_write| stil
[all...]
/external/boringssl/src/ssl/
H A Dssl_lib.c622 int SSL_write(SSL *ssl, const void *buf, int num) { function
/external/conscrypt/src/main/native/
H A Dorg_conscrypt_NativeCrypto.cpp7359 * either SSL_read() or SSL_write() at any given time. This is an OpenSSL
7390 * SSL_do_handshake, SSL_read, SSL_write, and SSL_shutdown.
7539 * can SSL_read() or SSL_write() without blocking. Takes into account any
8090 * Turn on "partial write" mode. This means that SSL_write() will
8093 * surprisingly, is not that SSL_write() always does full writes
9476 * Make socket non-blocking, so SSL_connect SSL_read() and SSL_write() don't hang
10100 JNI_TRACE("ssl=%p sslWrite SSL_write len=%d", ssl, len);
10101 int result = SSL_write(ssl, buf, len);
10110 JNI_TRACE("ssl=%p sslWrite SSL_write result=%d sslError=%d",
10258 int result = SSL_write(ss
[all...]
/external/libmicrohttpd/src/microhttpd/
H A Ddaemon.c562 res = SSL_write (connection->tls_session, other, i);

Completed in 499 milliseconds

12