/external/boringssl/src/ssl/ |
D | ssl_test.cc | 1525 int client_ret = SSL_do_handshake(client); in CompleteHandshakes() 1535 int server_ret = SSL_do_handshake(server); in CompleteHandshakes() 3830 int ret = SSL_do_handshake(ssl.get()); in TEST() 4043 int client_ret = SSL_do_handshake(client.get()); in TEST() 4047 int server_ret = SSL_do_handshake(server.get()); in TEST() 4062 int handshake_ret = SSL_do_handshake(handshaker.get()); in TEST() 4068 handshake_ret = SSL_do_handshake(handshaker.get()); in TEST() 4116 int client_ret = SSL_do_handshake(client.get()); in TEST() 4120 int server_ret = SSL_do_handshake(server.get()); in TEST() 4893 int client_ret = SSL_do_handshake(client_.get()); in TEST_F() [all …]
|
D | ssl_lib.cc | 875 int SSL_do_handshake(SSL *ssl) { in SSL_do_handshake() function 913 return SSL_do_handshake(ssl); in SSL_connect() 922 return SSL_do_handshake(ssl); in SSL_accept() 1019 int ret = SSL_do_handshake(ssl); in ssl_read_impl() 1123 ret = SSL_do_handshake(ssl); in SSL_write()
|
/external/boringssl/src/ssl/test/ |
D | handshaker.cc | 70 [&]() -> int { return SSL_do_handshake(ssl.get()); }); in Handshaker()
|
D | bssl_shim.cc | 766 return SSL_do_handshake(ssl); in DoExchange() 788 ret = SSL_do_handshake(ssl); in DoExchange() 797 SSL_do_handshake(ssl) != 1) { in DoExchange()
|
D | fuzzer.h | 322 int ret = SSL_do_handshake(ssl_handshake); in TestOneInput()
|
D | handshake_util.cc | 406 [&]() -> int { return SSL_do_handshake(ssl); }); in PrepareHandoff()
|
/external/honggfuzz/examples/openssl/ |
D | server.c | 606 if (SSL_do_handshake(server) == 1) { in LLVMFuzzerTestOneInput()
|
/external/libcups/cups/ |
D | tls-boringssl.c | 400 if (SSL_do_handshake(http->tls) != 1) in _httpTLSStart()
|
/external/libbrillo/brillo/streams/ |
D | tls_stream.cc | 412 int res = SSL_do_handshake(ssl_.get()); in DoHandshake()
|
/external/conscrypt/common/src/main/java/org/conscrypt/ |
D | NativeSsl.java | 386 NativeCrypto.SSL_do_handshake(ssl, this, fd, handshakeCallbacks, timeoutMillis); in doHandshake()
|
D | NativeCrypto.java | 1128 static native void SSL_do_handshake( in SSL_do_handshake() method in NativeCrypto
|
/external/conscrypt/repackaged/common/src/main/java/com/android/org/conscrypt/ |
D | NativeSsl.java | 387 NativeCrypto.SSL_do_handshake(ssl, this, fd, handshakeCallbacks, timeoutMillis); in doHandshake()
|
D | NativeCrypto.java | 1168 static native void SSL_do_handshake( in SSL_do_handshake() method in NativeCrypto
|
/external/grpc-grpc/src/core/tsi/ |
D | ssl_transport_security.cc | 1214 int ssl_result = SSL_do_handshake(impl->ssl); in ssl_handshaker_process_bytes_from_peer() 1369 ssl_result = SSL_do_handshake(ssl); in create_tsi_ssl_handshaker()
|
D | grpc_shadow_boringssl.h | 204 #define SSL_do_handshake GRPC_SHADOW_SSL_do_handshake macro
|
/external/conscrypt/openjdk/src/test/java/org/conscrypt/ |
D | NativeCryptoTest.java | 1021 NativeCrypto.SSL_do_handshake(s, null, fd, callback, timeout); in handshake() 1041 NativeCrypto.SSL_do_handshake(NULL, null, null, null, 0); in test_SSL_do_handshake_NULL_SSL() 1050 NativeCrypto.SSL_do_handshake(s, null, null, null, 0); in test_SSL_do_handshake_withNullFdShouldThrow() 1063 NativeCrypto.SSL_do_handshake(s, null, INVALID_FD, null, 0); in test_SSL_do_handshake_withNullShcShouldThrow()
|
/external/conscrypt/repackaged/openjdk/src/test/java/com/android/org/conscrypt/ |
D | NativeCryptoTest.java | 1029 NativeCrypto.SSL_do_handshake(s, null, fd, callback, timeout); in handshake() 1049 NativeCrypto.SSL_do_handshake(NULL, null, null, null, 0); in test_SSL_do_handshake_NULL_SSL() 1058 NativeCrypto.SSL_do_handshake(s, null, null, null, 0); in test_SSL_do_handshake_withNullFdShouldThrow() 1071 NativeCrypto.SSL_do_handshake(s, null, INVALID_FD, null, 0); in test_SSL_do_handshake_withNullShcShouldThrow()
|
/external/libevent/ |
D | bufferevent_openssl.c | 1027 r = SSL_do_handshake(bev_ssl->ssl); in do_handshake()
|
/external/grpc-grpc/src/objective-c/ |
D | grpc_shadow_boringssl_symbol_list | 176 SSL_do_handshake
|
D | BoringSSL-GRPC.podspec | 1728 '#define SSL_do_handshake GRPC_SHADOW_SSL_do_handshake',
|
/external/boringssl/src/include/openssl/ |
D | ssl.h | 343 OPENSSL_EXPORT int SSL_do_handshake(SSL *ssl);
|
/external/llvm/docs/ |
D | LibFuzzer.rst | 542 SSL_do_handshake(server);
|
/external/python/cpython2/Modules/ |
D | _ssl.c | 698 ret = SSL_do_handshake(self->ssl); in PySSL_SSLdo_handshake()
|
/external/conscrypt/common/src/jni/main/cpp/conscrypt/ |
D | native_crypto.cc | 7729 ret = SSL_do_handshake(ssl); in NativeCrypto_SSL_do_handshake() 9206 int ret = SSL_do_handshake(ssl); in NativeCrypto_ENGINE_SSL_do_handshake() 10155 CONSCRYPT_NATIVE_METHOD(SSL_do_handshake, "(J" REF_SSL FILE_DESCRIPTOR SSL_CALLBACKS "I)V"),
|
/external/python/cpython3/Modules/ |
D | _ssl.c | 1018 ret = SSL_do_handshake(self->ssl); in _ssl__SSLSocket_do_handshake_impl()
|