Home
last modified time | relevance | path

Searched refs:SSL_do_handshake (Results 1 – 25 of 25) sorted by relevance

/external/boringssl/src/ssl/
Dssl_test.cc1525 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 …]
Dssl_lib.cc875 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/
Dhandshaker.cc70 [&]() -> int { return SSL_do_handshake(ssl.get()); }); in Handshaker()
Dbssl_shim.cc766 return SSL_do_handshake(ssl); in DoExchange()
788 ret = SSL_do_handshake(ssl); in DoExchange()
797 SSL_do_handshake(ssl) != 1) { in DoExchange()
Dfuzzer.h322 int ret = SSL_do_handshake(ssl_handshake); in TestOneInput()
Dhandshake_util.cc406 [&]() -> int { return SSL_do_handshake(ssl); }); in PrepareHandoff()
/external/honggfuzz/examples/openssl/
Dserver.c606 if (SSL_do_handshake(server) == 1) { in LLVMFuzzerTestOneInput()
/external/libcups/cups/
Dtls-boringssl.c400 if (SSL_do_handshake(http->tls) != 1) in _httpTLSStart()
/external/libbrillo/brillo/streams/
Dtls_stream.cc412 int res = SSL_do_handshake(ssl_.get()); in DoHandshake()
/external/conscrypt/common/src/main/java/org/conscrypt/
DNativeSsl.java386 NativeCrypto.SSL_do_handshake(ssl, this, fd, handshakeCallbacks, timeoutMillis); in doHandshake()
DNativeCrypto.java1128 static native void SSL_do_handshake( in SSL_do_handshake() method in NativeCrypto
/external/conscrypt/repackaged/common/src/main/java/com/android/org/conscrypt/
DNativeSsl.java387 NativeCrypto.SSL_do_handshake(ssl, this, fd, handshakeCallbacks, timeoutMillis); in doHandshake()
DNativeCrypto.java1168 static native void SSL_do_handshake( in SSL_do_handshake() method in NativeCrypto
/external/grpc-grpc/src/core/tsi/
Dssl_transport_security.cc1214 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()
Dgrpc_shadow_boringssl.h204 #define SSL_do_handshake GRPC_SHADOW_SSL_do_handshake macro
/external/conscrypt/openjdk/src/test/java/org/conscrypt/
DNativeCryptoTest.java1021 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/
DNativeCryptoTest.java1029 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/
Dbufferevent_openssl.c1027 r = SSL_do_handshake(bev_ssl->ssl); in do_handshake()
/external/grpc-grpc/src/objective-c/
Dgrpc_shadow_boringssl_symbol_list176 SSL_do_handshake
DBoringSSL-GRPC.podspec1728 '#define SSL_do_handshake GRPC_SHADOW_SSL_do_handshake',
/external/boringssl/src/include/openssl/
Dssl.h343 OPENSSL_EXPORT int SSL_do_handshake(SSL *ssl);
/external/llvm/docs/
DLibFuzzer.rst542 SSL_do_handshake(server);
/external/python/cpython2/Modules/
D_ssl.c698 ret = SSL_do_handshake(self->ssl); in PySSL_SSLdo_handshake()
/external/conscrypt/common/src/jni/main/cpp/conscrypt/
Dnative_crypto.cc7729 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.c1018 ret = SSL_do_handshake(self->ssl); in _ssl__SSLSocket_do_handshake_impl()