/external/boringssl/src/ssl/ |
D | bio_ssl.cc | 67 const int ret = SSL_write(ssl, out, outl); in ssl_write()
|
D | ssl_test.cc | 1690 EXPECT_EQ(SSL_write(client_.get(), &byte, 1), 1); in TEST_P() 1718 ASSERT_EQ(SSL_write(server_.get(), &byte, 1), 1); in TEST_P() 2881 int ret = SSL_write(client_.get(), data, kChunkLen); in TEST_P() 2894 SSL_get_error(client_.get(), SSL_write(client_.get(), data, kChunkLen)), in TEST_P() 2899 SSL_write(client_.get(), data, kChunkLen - 1)), in TEST_P() 2906 SSL_write(client_.get(), data2, kChunkLen)), in TEST_P() 2913 SSL_write(client_.get(), data2, kChunkLen)), in TEST_P() 2918 SSL_write(client_.get(), data2, kChunkLen - 1)), in TEST_P() 2924 SSL_write(client_.get(), data, kChunkLen + 1)), in TEST_P() 2940 ASSERT_EQ(SSL_write(client_.get(), data3, kChunkLen + 1), kChunkLen); in TEST_P() [all …]
|
/external/tensorflow/tensorflow/contrib/ignite/kernels/client/ |
D | ignite_ssl_wrapper.cc | 138 int res = SSL_write(ssl_, buf, length - sent); in WriteData()
|
/external/honggfuzz/examples/openssl/ |
D | client.c | 588 if (SSL_write(client, tmp, r) <= 0) { in LLVMFuzzerTestOneInput()
|
D | server.c | 622 if (SSL_write(server, tmp, r) <= 0) { in LLVMFuzzerTestOneInput()
|
/external/libcups/cups/ |
D | tls-boringssl.c | 503 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 | 707 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 | 239 ret = SSL_write(ssl, in, in_len); in WriteAll() 917 SSL_write(ssl, kInitialWrite, strlen(kInitialWrite)); in DoExchange()
|
/external/curl/lib/vtls/ |
D | mesalink.c | 353 int rc = SSL_write(BACKEND->handle, mem, memlen); in mesalink_send()
|
D | cyassl.c | 680 int rc = SSL_write(BACKEND->handle, mem, memlen); in cyassl_send()
|
/external/conscrypt/openjdk/src/test/java/org/conscrypt/ |
D | NativeCryptoTest.java | 2269 NativeCrypto.SSL_write(s, null, fd, callback, BYTES, 0, BYTES.length, 0); in test_SSL_read() 2313 NativeCrypto.SSL_write(NULL, null, null, null, null, 0, 0, 0); in SSL_write_withNullSslShouldThrow() 2321 NativeCrypto.SSL_write(s, null, null, DUMMY_CB, null, 0, 1, 0); in SSL_write_withNullFdShouldThrow() 2333 NativeCrypto.SSL_write(s, null, INVALID_FD, null, null, 0, 1, 0); in SSL_write_withNullCallbacksShouldThrow() 2345 NativeCrypto.SSL_write(s, null, INVALID_FD, DUMMY_CB, null, 0, 1, 0); in SSL_write_withNullBytesShouldThrow() 2357 NativeCrypto.SSL_write(s, null, INVALID_FD, DUMMY_CB, new byte[1], 0, 1, 0); in SSL_write_beforeHandshakeShouldThrow()
|
/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 | 2277 NativeCrypto.SSL_write(s, null, fd, callback, BYTES, 0, BYTES.length, 0); in test_SSL_read() 2321 NativeCrypto.SSL_write(NULL, null, null, null, null, 0, 0, 0); in SSL_write_withNullSslShouldThrow() 2329 NativeCrypto.SSL_write(s, null, null, DUMMY_CB, null, 0, 1, 0); in SSL_write_withNullFdShouldThrow() 2341 NativeCrypto.SSL_write(s, null, INVALID_FD, null, null, 0, 1, 0); in SSL_write_withNullCallbacksShouldThrow() 2353 NativeCrypto.SSL_write(s, null, INVALID_FD, DUMMY_CB, null, 0, 1, 0); in SSL_write_withNullBytesShouldThrow() 2365 NativeCrypto.SSL_write(s, null, INVALID_FD, DUMMY_CB, new byte[1], 0, 1, 0); in SSL_write_beforeHandshakeShouldThrow()
|
/external/conscrypt/common/src/main/java/org/conscrypt/ |
D | NativeSsl.java | 425 .SSL_write(ssl, this, fd, handshakeCallbacks, buf, offset, len, timeoutMillis); in write()
|
D | NativeCrypto.java | 1151 static native void SSL_write(long ssl, NativeSsl ssl_holder, FileDescriptor fd, in SSL_write() method in NativeCrypto
|
/external/conscrypt/repackaged/common/src/main/java/com/android/org/conscrypt/ |
D | NativeSsl.java | 426 .SSL_write(ssl, this, fd, handshakeCallbacks, buf, offset, len, timeoutMillis); in write()
|
D | NativeCrypto.java | 1191 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/libevent/ |
D | bufferevent_openssl.c | 680 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
|