Home
last modified time | relevance | path

Searched refs:SSL_clear_options (Results 1 – 13 of 13) sorted by relevance

/external/conscrypt/common/src/main/java/org/conscrypt/
DNativeSsl.java360 NativeCrypto.SSL_clear_options(ssl, this, SSL_OP_NO_TICKET); in initialize()
DNativeCrypto.java912 static native long SSL_clear_options(long ssl, NativeSsl ssl_holder, long options); in SSL_clear_options() method in NativeCrypto
/external/conscrypt/repackaged/common/src/main/java/com/android/org/conscrypt/
DNativeSsl.java361 NativeCrypto.SSL_clear_options(ssl, this, SSL_OP_NO_TICKET); in initialize()
DNativeCrypto.java952 static native long SSL_clear_options(long ssl, NativeSsl ssl_holder, long options); in SSL_clear_options() method in NativeCrypto
/external/boringssl/src/include/openssl/
Dssl.h698 OPENSSL_EXPORT uint32_t SSL_clear_options(SSL *ssl, uint32_t options);
4612 #define SSL_clear_options SSL_clear_options macro
/external/wpa_supplicant_8/src/crypto/
Dtls_openssl.c2858 SSL_clear_options(ssl, SSL_OP_NO_TICKET); in tls_set_conn_flags()
2865 SSL_clear_options(ssl, SSL_OP_NO_TLSv1); in tls_set_conn_flags()
2871 SSL_clear_options(ssl, SSL_OP_NO_TLSv1_1); in tls_set_conn_flags()
2877 SSL_clear_options(ssl, SSL_OP_NO_TLSv1_2); in tls_set_conn_flags()
2883 SSL_clear_options(ssl, SSL_OP_NO_TLSv1_3); in tls_set_conn_flags()
/external/grpc-grpc/src/objective-c/
Dgrpc_shadow_boringssl_symbol_list173 SSL_clear_options
DBoringSSL-GRPC.podspec1725 '#define SSL_clear_options GRPC_SHADOW_SSL_clear_options',
/external/conscrypt/openjdk/src/test/java/org/conscrypt/
DNativeCryptoTest.java539 NativeCrypto.SSL_clear_options(NULL, null, 0); in SSL_clear_options_withNullShouldThrow()
549 NativeCrypto.SSL_clear_options(s, null, SSL_OP_CIPHER_SERVER_PREFERENCE); in test_SSL_clear_options()
/external/conscrypt/repackaged/openjdk/src/test/java/com/android/org/conscrypt/
DNativeCryptoTest.java543 NativeCrypto.SSL_clear_options(NULL, null, 0); in SSL_clear_options_withNullShouldThrow()
553 NativeCrypto.SSL_clear_options(s, null, SSL_OP_CIPHER_SERVER_PREFERENCE); in test_SSL_clear_options()
/external/boringssl/src/ssl/
Dssl_lib.cc1426 uint32_t SSL_clear_options(SSL *ssl, uint32_t options) { in SSL_clear_options() function
/external/grpc-grpc/src/core/tsi/
Dgrpc_shadow_boringssl.h201 #define SSL_clear_options GRPC_SHADOW_SSL_clear_options macro
/external/conscrypt/common/src/jni/main/cpp/conscrypt/
Dnative_crypto.cc6893 jlong result = static_cast<jlong>(SSL_clear_options(ssl, static_cast<uint32_t>(options))); in NativeCrypto_SSL_clear_options()
10131 CONSCRYPT_NATIVE_METHOD(SSL_clear_options, "(J" REF_SSL "J)J"),