/external/boringssl/src/ssl/ |
D | ssl_test.cc | 1604 int server_ret = SSL_write(server, nullptr, 0); in FlushNewSessionTickets() 1767 EXPECT_EQ(SSL_write(client_.get(), &byte, 1), 1); in TEST_P() 1795 ASSERT_EQ(SSL_write(server_.get(), &byte, 1), 1); in TEST_P() 2954 int ret = SSL_write(client_.get(), data, kChunkLen); in TEST_P() 2967 SSL_get_error(client_.get(), SSL_write(client_.get(), data, kChunkLen)), in TEST_P() 2972 SSL_write(client_.get(), data, kChunkLen - 1)), in TEST_P() 2979 SSL_write(client_.get(), data2, kChunkLen)), in TEST_P() 2986 SSL_write(client_.get(), data2, kChunkLen)), in TEST_P() 2991 SSL_write(client_.get(), data2, kChunkLen - 1)), in TEST_P() 2997 SSL_write(client_.get(), data, kChunkLen + 1)), in TEST_P() [all …]
|
D | bio_ssl.cc | 67 const int ret = SSL_write(ssl, out, outl); in ssl_write()
|
/external/honggfuzz/examples/openssl/ |
D | client.c | 646 if (SSL_write(client, tmp, r) <= 0) { in LLVMFuzzerTestOneInput()
|
D | server.c | 694 if (SSL_write(server, tmp, r) <= 0) { in LLVMFuzzerTestOneInput()
|
/external/libcups/cups/ |
D | tls-boringssl.c | 505 result = SSL_write((SSL *)(http->tls), buf, len); in _httpTLSWrite()
|
/external/boringssl/src/tool/ |
D | server.cc | 200 SSL_write(ssl, response, response_len); in HandleWWW()
|
D | client.cc | 309 int ssl_ret = SSL_write(ssl.get(), early_data.data(), ed_size); in DoConnection()
|
D | transport_common.cc | 708 SSL_write(ssl, pending_write, static_cast<int>(pending_write_len)); in TransferData()
|
/external/curl/lib/ |
D | setup-vms.h | 310 #define SSL_write SSL_WRITE macro
|
/external/boringssl/src/ssl/test/ |
D | bssl_shim.cc | 238 ret = SSL_write(ssl, in, in_len); in WriteAll() 966 SSL_write(ssl, kInitialWrite, strlen(kInitialWrite)); in DoExchange()
|
/external/curl/lib/vtls/ |
D | mesalink.c | 389 int rc = SSL_write(BACKEND->handle, mem, memlen); in mesalink_send()
|
D | wolfssl.c | 660 int rc = SSL_write(BACKEND->handle, mem, memlen); in wolfssl_send()
|
/external/libbrillo/brillo/streams/ |
D | tls_stream.cc | 187 int ret = SSL_write(ssl_.get(), buffer, size_int); in WriteNonBlocking()
|
/external/conscrypt/repackaged/openjdk/src/test/java/com/android/org/conscrypt/ |
D | NativeCryptoTest.java | 2315 NativeCrypto.SSL_write(s, null, fd, callback, BYTES, 0, BYTES.length, 0); in test_SSL_read() 2359 NativeCrypto.SSL_write(NULL, null, null, null, null, 0, 0, 0); in SSL_write_withNullSslShouldThrow() 2367 NativeCrypto.SSL_write(s, null, null, DUMMY_CB, null, 0, 1, 0); in SSL_write_withNullFdShouldThrow() 2379 NativeCrypto.SSL_write(s, null, INVALID_FD, null, null, 0, 1, 0); in SSL_write_withNullCallbacksShouldThrow() 2391 NativeCrypto.SSL_write(s, null, INVALID_FD, DUMMY_CB, null, 0, 1, 0); in SSL_write_withNullBytesShouldThrow() 2403 NativeCrypto.SSL_write(s, null, INVALID_FD, DUMMY_CB, new byte[1], 0, 1, 0); in SSL_write_beforeHandshakeShouldThrow()
|
/external/conscrypt/openjdk/src/test/java/org/conscrypt/ |
D | NativeCryptoTest.java | 2306 NativeCrypto.SSL_write(s, null, fd, callback, BYTES, 0, BYTES.length, 0); in test_SSL_read() 2350 NativeCrypto.SSL_write(NULL, null, null, null, null, 0, 0, 0); in SSL_write_withNullSslShouldThrow() 2358 NativeCrypto.SSL_write(s, null, null, DUMMY_CB, null, 0, 1, 0); in SSL_write_withNullFdShouldThrow() 2370 NativeCrypto.SSL_write(s, null, INVALID_FD, null, null, 0, 1, 0); in SSL_write_withNullCallbacksShouldThrow() 2382 NativeCrypto.SSL_write(s, null, INVALID_FD, DUMMY_CB, null, 0, 1, 0); in SSL_write_withNullBytesShouldThrow() 2394 NativeCrypto.SSL_write(s, null, INVALID_FD, DUMMY_CB, new byte[1], 0, 1, 0); in SSL_write_beforeHandshakeShouldThrow()
|
/external/conscrypt/repackaged/common/src/main/java/com/android/org/conscrypt/ |
D | NativeSsl.java | 446 .SSL_write(ssl, this, fd, handshakeCallbacks, buf, offset, len, timeoutMillis); in write()
|
D | NativeCrypto.java | 1188 static native void SSL_write(long ssl, NativeSsl ssl_holder, FileDescriptor fd, in SSL_write() method in NativeCrypto
|
/external/conscrypt/common/src/main/java/org/conscrypt/ |
D | NativeSsl.java | 445 .SSL_write(ssl, this, fd, handshakeCallbacks, buf, offset, len, timeoutMillis); in write()
|
D | NativeCrypto.java | 1157 static native void SSL_write(long ssl, NativeSsl ssl_holder, FileDescriptor fd, in SSL_write() method in NativeCrypto
|
/external/webrtc/webrtc/base/ |
D | openssladapter.cc | 491 int code = SSL_write(ssl_, pv, checked_cast<int>(cb)); in Send()
|
D | opensslstreamadapter.cc | 530 int code = SSL_write(ssl_, data, checked_cast<int>(data_len)); in Write()
|
/external/python/pyopenssl/src/OpenSSL/ |
D | SSL.py | 1736 result = _lib.SSL_write(self._ssl, buf, len(buf)) 1768 result = _lib.SSL_write(
|
/external/libevent/ |
D | bufferevent_openssl.c | 684 r = SSL_write(bev_ssl->ssl, space[i].iov_base, in do_write()
|
/external/boringssl/src/ |
D | PORTING.md | 144 * If a HelloRequest is received while `SSL_write` has unsent application data,
|
/external/grpc-grpc/src/objective-c/ |
D | grpc_shadow_boringssl_symbol_list | 310 SSL_write
|