/external/webrtc/tools/valgrind-webrtc/memcheck/ |
D | suppressions.txt | 70 fun:SSL_read 90 fun:SSL_read
|
/external/boringssl/src/ssl/ |
D | bio_ssl.cc | 27 const int ret = SSL_read(ssl, out, outl); in ssl_read()
|
D | ssl_test.cc | 1665 ASSERT_LE(SSL_read(client_.get(), &byte, 1), 0); in TEST_P() 1666 ASSERT_LE(SSL_read(server_.get(), &byte, 1), 0); in TEST_P() 1691 EXPECT_EQ(SSL_read(server_.get(), &byte, 1), 1); in TEST_P() 1712 ASSERT_EQ(SSL_read(server_.get(), &byte, 1), 0); in TEST_P() 1719 ASSERT_EQ(SSL_read(client_.get(), &byte, 1), 1); in TEST_P() 2093 SSL_read(client.get(), nullptr, 0); in CreateClientSession() 2144 SSL_read(client.get(), nullptr, 0); in ExpectSessionRenewed() 2930 ASSERT_EQ(SSL_read(server_.get(), buf, sizeof(buf)), kChunkLen); in TEST_P() 2948 ASSERT_EQ(SSL_read(server_.get(), buf, sizeof(buf)), kChunkLen); in TEST_P() 2950 ASSERT_EQ(SSL_read(server_.get(), buf, sizeof(buf)), 1); in TEST_P() [all …]
|
/external/tensorflow/tensorflow/contrib/ignite/kernels/client/ |
D | ignite_ssl_wrapper.cc | 119 int res = SSL_read(ssl_, buf, length - received); in ReadData()
|
/external/honggfuzz/examples/openssl/ |
D | client.c | 584 ssize_t r = SSL_read(client, tmp, sizeof(tmp)); in LLVMFuzzerTestOneInput()
|
D | server.c | 618 ssize_t r = SSL_read(server, tmp, sizeof(tmp)); in LLVMFuzzerTestOneInput()
|
/external/grpc-grpc/test/core/handshake/ |
D | client_ssl.cc | 200 while (SSL_read(ssl, &buf, sizeof(buf)) > 0) in server_thread()
|
/external/conscrypt/openjdk/src/test/java/org/conscrypt/ |
D | NativeCryptoTest.java | 2195 NativeCrypto.SSL_read(NULL, null, null, null, null, 0, 0, 0); in SSL_read_withNullSslShouldThrow() 2203 NativeCrypto.SSL_read(s, null, null, DUMMY_CB, null, 0, 0, 0); in SSL_read_withNullFdShouldThrow() 2215 NativeCrypto.SSL_read(s, null, INVALID_FD, null, null, 0, 0, 0); in SSL_read_withNullCallbacksShouldThrow() 2227 NativeCrypto.SSL_read(s, null, INVALID_FD, DUMMY_CB, null, 0, 0, 0); in SSL_read_withNullBytesShouldThrow() 2239 NativeCrypto.SSL_read(s, null, INVALID_FD, DUMMY_CB, new byte[1], 0, 1, 0); in SSL_read_beforeHandshakeShouldThrow() 2258 NativeCrypto.SSL_read(s, null, fd, callback, in, 0, BYTES.length, 0)); in test_SSL_read() 2287 NativeCrypto.SSL_read(s, null, fd, callback, new byte[1], 0, 1, 1); in test_SSL_read() 2295 NativeCrypto.SSL_read(s, null, fd, callback, new byte[1], 0, 1, 0); in test_SSL_read() 2388 NativeCrypto.SSL_read(s, null, fd, callback, new byte[1], 0, 1, 0); in test_SSL_interrupt() 2407 … assertEquals(-1, NativeCrypto.SSL_read(s, null, fd, callback, new byte[1], 0, 1, 0)); in test_SSL_interrupt()
|
/external/libcups/cups/ |
D | tls-boringssl.c | 305 return (SSL_read((SSL *)(http->tls), buf, len)); in _httpTLSRead()
|
/external/conscrypt/repackaged/openjdk/src/test/java/com/android/org/conscrypt/ |
D | NativeCryptoTest.java | 2203 NativeCrypto.SSL_read(NULL, null, null, null, null, 0, 0, 0); in SSL_read_withNullSslShouldThrow() 2211 NativeCrypto.SSL_read(s, null, null, DUMMY_CB, null, 0, 0, 0); in SSL_read_withNullFdShouldThrow() 2223 NativeCrypto.SSL_read(s, null, INVALID_FD, null, null, 0, 0, 0); in SSL_read_withNullCallbacksShouldThrow() 2235 NativeCrypto.SSL_read(s, null, INVALID_FD, DUMMY_CB, null, 0, 0, 0); in SSL_read_withNullBytesShouldThrow() 2247 NativeCrypto.SSL_read(s, null, INVALID_FD, DUMMY_CB, new byte[1], 0, 1, 0); in SSL_read_beforeHandshakeShouldThrow() 2266 NativeCrypto.SSL_read(s, null, fd, callback, in, 0, BYTES.length, 0)); in test_SSL_read() 2295 NativeCrypto.SSL_read(s, null, fd, callback, new byte[1], 0, 1, 1); in test_SSL_read() 2303 NativeCrypto.SSL_read(s, null, fd, callback, new byte[1], 0, 1, 0); in test_SSL_read() 2396 NativeCrypto.SSL_read(s, null, fd, callback, new byte[1], 0, 1, 0); in test_SSL_interrupt() 2415 … assertEquals(-1, NativeCrypto.SSL_read(s, null, fd, callback, new byte[1], 0, 1, 0)); in test_SSL_interrupt()
|
/external/boringssl/src/tool/ |
D | server.cc | 186 SSL_read(ssl, request + request_len, sizeof(request) - request_len); in HandleWWW()
|
D | client.cc | 213 int ssl_ret = SSL_read(ssl, buffer, sizeof(buffer)); in WaitForSession()
|
D | transport_common.cc | 726 int ssl_ret = SSL_read(ssl, buffer, sizeof(buffer)); in TransferData()
|
/external/webrtc/webrtc/base/ |
D | opensslstreamadapter.cc | 591 int code = SSL_read(ssl_, data, checked_cast<int>(data_len)); in Read() 640 int code = SSL_read(ssl_, buf, toread); in FlushInput()
|
D | openssladapter.cc | 558 int code = SSL_read(ssl_, pv, checked_cast<int>(cb)); in Recv()
|
/external/curl/lib/ |
D | setup-vms.h | 304 #define SSL_read SSL_READ macro
|
/external/boringssl/src/ssl/test/ |
D | fuzzer.h | 363 if (SSL_read(ssl_handshake, tmp, sizeof(tmp)) <= 0) { in TestOneInput()
|
D | bssl_shim.cc | 192 : SSL_read(ssl, out, max_out); in DoRead() 221 ret2 = SSL_read(ssl, buf.get(), ret); in DoRead()
|
/external/curl/lib/vtls/ |
D | mesalink.c | 398 int nread = SSL_read(BACKEND->handle, buf, buffsize); in mesalink_recv()
|
D | cyassl.c | 726 int nread = SSL_read(BACKEND->handle, buf, buffsize); in cyassl_recv()
|
/external/libbrillo/brillo/streams/ |
D | tls_stream.cc | 150 int ret = SSL_read(ssl_.get(), buffer, size_int); in ReadNonBlocking()
|
/external/conscrypt/common/src/main/java/org/conscrypt/ |
D | NativeSsl.java | 410 .SSL_read(ssl, this, fd, handshakeCallbacks, buf, offset, len, timeoutMillis); in read()
|
D | NativeCrypto.java | 1145 …static native int SSL_read(long ssl, NativeSsl ssl_holder, FileDescriptor fd, SSLHandshakeCallback… in SSL_read() method in NativeCrypto
|
/external/conscrypt/repackaged/common/src/main/java/com/android/org/conscrypt/ |
D | NativeSsl.java | 411 .SSL_read(ssl, this, fd, handshakeCallbacks, buf, offset, len, timeoutMillis); in read()
|
/external/grpc-grpc/src/objective-c/tests/CronetUnitTests/ |
D | CronetUnitTests.m | 343 while ((len = SSL_read(ssl, buf, sizeof(buf))) > 0) {
|