HomeSort by relevance Sort by last modified time
    Searched refs:SSL_read (Results 1 - 25 of 26) sorted by null

1 2

  /external/libmicrohttpd/src/microspdy/
io_openssl.c 189 int n = SSL_read(session->io_context,
  /external/libvncserver/libvncserver/
rfbssl_openssl.c 115 while ((ret = SSL_read(ctx->ssl, buf, bufsize)) <= 0) {
  /external/boringssl/src/tool/
transport_common.cc 291 int ssl_ret = SSL_read(ssl, buffer, sizeof(buffer));
  /external/libweave/examples/provider/
ssl_stream.cc 73 int res = SSL_read(ssl_.get(), buffer, size_to_read);
  /external/conscrypt/src/test/java/org/conscrypt/
NativeCryptoTest.java     [all...]
  /external/curl/lib/
setup-vms.h 303 #define SSL_read SSL_READ
  /external/libvncserver/libvncclient/
tls_openssl.c 552 ret = SSL_read (client->tlsSession, out, n);
  /external/webrtc/webrtc/base/
opensslstreamadapter.cc 591 int code = SSL_read(ssl_, data, checked_cast<int>(data_len));
626 Error("SSL_read", (ssl_error ? ssl_error : -1), false);
640 int code = SSL_read(ssl_, buf, toread);
647 Error("SSL_read", (ssl_error ? ssl_error : -1), false);
    [all...]
openssladapter.cc 558 int code = SSL_read(ssl_, pv, checked_cast<int>(cb));
579 Error("SSL_read", (code ? code : -1), false);
  /external/curl/lib/vtls/
cyassl.c 674 int nread = SSL_read(conn->ssl[num].handle, buf, buffsize);
684 /* there's data pending, re-invoke SSL_read() */
openssl.c 959 nread = (ssize_t)SSL_read(conn->ssl[sockindex].handle, buf,
971 /* there's data pending, re-invoke SSL_read() */
    [all...]
  /external/libbrillo/brillo/streams/
tls_stream.cc 150 int ret = SSL_read(ssl_.get(), buffer, size_int);
169 // Writes might be required for SSL_read() because of possible TLS
  /external/libmicrohttpd/src/examples/
mhd2spdy_spdy.c 238 rv = SSL_read(connection->ssl, buf, length);
  /external/conscrypt/src/main/java/org/conscrypt/
NativeCrypto.java     [all...]
OpenSSLSocketImpl.java 367 // TODO: SSL_read and SSL_write return -1 when interrupted, but SSL_do_handshake
713 * make sure we serialize callers of SSL_read. Thread is already
758 return NativeCrypto.SSL_read(sslNativePointer, Platform.getFileDescriptor(socket),
    [all...]
  /external/libevent/
bufferevent_openssl.c 588 r = SSL_read(bev_ssl->ssl, space[i].iov_base, space[i].iov_len);
    [all...]
  /external/libmicrohttpd/src/testspdy/
test_new_connection.c 265 rv = SSL_read(connection->ssl, buf, length);
test_request_response.c 247 rv = SSL_read(connection->ssl, buf, length);
  /external/tlsdate/src/
tlsdate-helper.c 309 n = SSL_read(ssl, buf+buf_len, sizeof(buf)-buf_len-1);
    [all...]
  /external/boringssl/src/ssl/test/
bssl_shim.cc 896 // the result value of the final |SSL_read| call.
904 // may progress, allow writes through synchronously. |SSL_read| may
908 ret = SSL_read(ssl, out, max_out);
    [all...]
  /external/wpa_supplicant_8/src/crypto/
tls_openssl.c     [all...]
  /external/boringssl/src/include/openssl/
ssl.h 299 /* SSL_read reads up to |num| bytes from |ssl| into |buf|. It implicitly runs
306 OPENSSL_EXPORT int SSL_read(SSL *ssl, void *buf, int num);
308 /* SSL_peek behaves like |SSL_read| but does not consume any bytes returned. */
618 * and |SSL_read| will transparently wait for the final handshake leg before
    [all...]
  /external/boringssl/src/ssl/
ssl_lib.c 593 int SSL_read(SSL *ssl, void *buf, int num) {
    [all...]
  /external/conscrypt/src/main/native/
org_conscrypt_NativeCrypto.cpp     [all...]
  /external/libmicrohttpd/src/microhttpd/
daemon.c 522 res = SSL_read (connection->tls_session, other, i);
    [all...]

Completed in 1067 milliseconds

1 2