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

1 2

  /external/boringssl/src/ssl/
bio_ssl.cc 59 static int ssl_write(BIO *bio, const char *out, int outl) { function
67 const int ret = SSL_write(ssl, out, outl);
171 BIO_TYPE_SSL, "SSL", ssl_write, ssl_read, NULL,
ssl_test.cc     [all...]
  /external/libmicrohttpd/src/microspdy/
io_openssl.c 225 int n = SSL_write(session->io_context,
  /external/libvncserver/libvncserver/
rfbssl_openssl.c 91 while ((ret = SSL_write(ctx->ssl, buf, bufsize)) <= 0) {
  /system/netd/tests/dns_responder/
dns_tls_frontend.cpp 321 if (SSL_write(ssl, responseHeader, 2) != 2) {
325 if (SSL_write(ssl, recv_buffer, rlen) != rlen) {
  /external/curl/lib/
setup-vms.h 310 #define SSL_write SSL_WRITE
  /external/libcups/cups/
tls-boringssl.c 578 result = SSL_write((SSL *)(http->tls), buf, len);
  /system/netd/server/dns/
DnsTlsTransport.cpp 218 int ret = SSL_write(ssl, buffer, len);
227 ALOGW("SSL_write error");
236 ALOGW("SSL_write error %d", ssl_err);
310 ALOGD("%u SSL_write complete", mMark);
  /external/boringssl/src/tool/
client.cc 282 int ssl_ret = SSL_write(ssl.get(), args_map["-early-data"].data(), ed_size);
289 fprintf(stderr, "Short write from SSL_write.\n");
transport_common.cc 405 int ssl_ret = SSL_write(ssl, buffer, n);
416 fprintf(stderr, "Short write from SSL_write.\n");
  /external/libvncserver/libvncclient/
tls_openssl.c 576 ret = SSL_write (client->tlsSession, buf + offset, (size_t)(n-offset));
  /external/conscrypt/common/src/main/java/org/conscrypt/
SslWrapper.java 390 NativeCrypto.SSL_write(ssl, fd, handshakeCallbacks, buf, offset, len, timeoutMillis);
NativeCrypto.java     [all...]
  /external/curl/lib/vtls/
cyassl.c 641 int rc = SSL_write(conn->ssl[sockindex].handle, mem, memlen);
649 /* there's data pending, re-invoke SSL_write() */
  /external/libbrillo/brillo/streams/
tls_stream.cc 187 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/
mhd2spdy_spdy.c 167 rv = SSL_write(connection->ssl, data, length);
  /external/webrtc/webrtc/base/
openssladapter.cc 491 int code = SSL_write(ssl_, pv, checked_cast<int>(cb));
512 Error("SSL_write", (code ? code : -1), false);
opensslstreamadapter.cc 530 int code = SSL_write(ssl_, data, checked_cast<int>(data_len));
549 Error("SSL_write", (ssl_error ? ssl_error : -1), false);
    [all...]
  /external/conscrypt/openjdk/src/test/java/org/conscrypt/
NativeCryptoTest.java     [all...]
  /external/libevent/
bufferevent_openssl.c 302 /* 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,
    [all...]
  /external/libmicrohttpd/src/testspdy/
test_new_connection.c 233 rv = SSL_write(connection->ssl, data, length);
test_request_response.c 215 rv = SSL_write(connection->ssl, data, length);
  /external/boringssl/src/ssl/test/
bssl_shim.cc     [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Modules/
_ssl.c     [all...]
  /external/boringssl/src/include/openssl/
ssl.h 359 /* SSL_write writes up to |num| bytes from |buf| into |ssl|. It implicitly runs
364 * In TLS, a non-blocking |SSL_write| differs from non-blocking |write| in that
365 * a failed |SSL_write| still commits to the data passed in. When retrying, the
372 * By default, in TLS, |SSL_write| will not return success until all |num| bytes
374 * allows |SSL_write| to complete with a partial result when only part of the
379 * different buffer freely. A single call to |SSL_write| only ever writes a
385 OPENSSL_EXPORT int SSL_write(SSL *ssl, const void *buf, int num);
671 /* SSL_MODE_ENABLE_PARTIAL_WRITE, in TLS, allows |SSL_write| to complete with a
677 * |SSL_write| with a different buffer. However, |SSL_write| still assumes th
    [all...]

Completed in 625 milliseconds

1 2