/external/python/cryptography/tests/hazmat/bindings/ |
D | test_openssl.py | 52 current_options = b.lib.SSL_get_options(ssl) 56 assert b.lib.SSL_get_options(ssl) == expected_options
|
/external/cronet/third_party/boringssl/src/ssl/ |
D | d1_lib.cc | 173 !(SSL_get_options(ssl) & SSL_OP_NO_QUERY_MTU)) { in dtls1_check_timeout_num()
|
D | d1_both.cc | 598 !(SSL_get_options(ssl) & SSL_OP_NO_QUERY_MTU)) { in dtls1_update_mtu()
|
D | extensions.cc | 1001 SSL_get_options(ssl) & SSL_OP_NO_TICKET) { in ext_ticket_add_clienthello() 1044 assert((SSL_get_options(ssl) & SSL_OP_NO_TICKET) == 0); in ext_ticket_parse_serverhello() 1060 assert((SSL_get_options(hs->ssl) & SSL_OP_NO_TICKET) == 0); in ext_ticket_add_serverhello() 3971 if ((SSL_get_options(hs->ssl) & SSL_OP_NO_TICKET) || in ssl_process_ticket()
|
D | tls13_server.cc | 133 (SSL_get_options(ssl) & SSL_OP_NO_TICKET)) { in add_new_session_tickets()
|
/external/boringssl/src/ssl/ |
D | d1_lib.cc | 173 !(SSL_get_options(ssl) & SSL_OP_NO_QUERY_MTU)) { in dtls1_check_timeout_num()
|
D | d1_both.cc | 598 !(SSL_get_options(ssl) & SSL_OP_NO_QUERY_MTU)) { in dtls1_update_mtu()
|
D | extensions.cc | 1001 SSL_get_options(ssl) & SSL_OP_NO_TICKET) { in ext_ticket_add_clienthello() 1044 assert((SSL_get_options(ssl) & SSL_OP_NO_TICKET) == 0); in ext_ticket_parse_serverhello() 1060 assert((SSL_get_options(hs->ssl) & SSL_OP_NO_TICKET) == 0); in ext_ticket_add_serverhello() 3971 if ((SSL_get_options(hs->ssl) & SSL_OP_NO_TICKET) || in ssl_process_ticket()
|
D | tls13_server.cc | 133 (SSL_get_options(ssl) & SSL_OP_NO_TICKET)) { in add_new_session_tickets()
|
D | ssl_session.cc | 721 !(SSL_get_options(hs->ssl) & SSL_OP_NO_TICKET) && in ssl_get_prev_session()
|
/external/rust/crates/quiche/deps/boringssl/src/ssl/ |
D | d1_lib.cc | 173 !(SSL_get_options(ssl) & SSL_OP_NO_QUERY_MTU)) { in dtls1_check_timeout_num()
|
D | d1_both.cc | 606 !(SSL_get_options(ssl) & SSL_OP_NO_QUERY_MTU)) { in dtls1_update_mtu()
|
D | extensions.cc | 996 SSL_get_options(ssl) & SSL_OP_NO_TICKET) { in ext_ticket_add_clienthello() 1039 assert((SSL_get_options(ssl) & SSL_OP_NO_TICKET) == 0); in ext_ticket_parse_serverhello() 1055 assert((SSL_get_options(hs->ssl) & SSL_OP_NO_TICKET) == 0); in ext_ticket_add_serverhello() 3963 if ((SSL_get_options(hs->ssl) & SSL_OP_NO_TICKET) || in ssl_process_ticket()
|
D | tls13_server.cc | 129 (SSL_get_options(ssl) & SSL_OP_NO_TICKET)) { in add_new_session_tickets()
|
/external/libwebsockets/lib/tls/mbedtls/wrapper/include/openssl/ |
D | ssl.h | 1707 unsigned long SSL_get_options(SSL *ssl);
|
/external/conscrypt/openjdk/src/test/java/org/conscrypt/ |
D | NativeCryptoTest.java | 382 assertTrue((NativeCrypto.SSL_get_options(s, null) & SSL_OP_NO_TICKET) != 0); in test_SSL_new() 510 NativeCrypto.SSL_get_options(NULL, null); in SSL_get_options_withNullShouldThrow() 517 assertTrue(NativeCrypto.SSL_get_options(s, null) != 0); in test_SSL_get_options() 531 assertTrue((NativeCrypto.SSL_get_options(s, null) & SSL_OP_CIPHER_SERVER_PREFERENCE) == 0); in test_SSL_set_options() 533 assertTrue((NativeCrypto.SSL_get_options(s, null) & SSL_OP_CIPHER_SERVER_PREFERENCE) != 0); in test_SSL_set_options() 547 assertTrue((NativeCrypto.SSL_get_options(s, null) & SSL_OP_CIPHER_SERVER_PREFERENCE) == 0); in test_SSL_clear_options() 549 assertTrue((NativeCrypto.SSL_get_options(s, null) & SSL_OP_CIPHER_SERVER_PREFERENCE) != 0); in test_SSL_clear_options() 551 assertTrue((NativeCrypto.SSL_get_options(s, null) & SSL_OP_CIPHER_SERVER_PREFERENCE) == 0); in test_SSL_clear_options()
|
/external/conscrypt/repackaged/openjdk/src/test/java/com/android/org/conscrypt/ |
D | NativeCryptoTest.java | 386 assertTrue((NativeCrypto.SSL_get_options(s, null) & SSL_OP_NO_TICKET) != 0); in test_SSL_new() 514 NativeCrypto.SSL_get_options(NULL, null); in SSL_get_options_withNullShouldThrow() 521 assertTrue(NativeCrypto.SSL_get_options(s, null) != 0); in test_SSL_get_options() 535 assertTrue((NativeCrypto.SSL_get_options(s, null) & SSL_OP_CIPHER_SERVER_PREFERENCE) == 0); in test_SSL_set_options() 537 assertTrue((NativeCrypto.SSL_get_options(s, null) & SSL_OP_CIPHER_SERVER_PREFERENCE) != 0); in test_SSL_set_options() 551 assertTrue((NativeCrypto.SSL_get_options(s, null) & SSL_OP_CIPHER_SERVER_PREFERENCE) == 0); in test_SSL_clear_options() 553 assertTrue((NativeCrypto.SSL_get_options(s, null) & SSL_OP_CIPHER_SERVER_PREFERENCE) != 0); in test_SSL_clear_options() 555 assertTrue((NativeCrypto.SSL_get_options(s, null) & SSL_OP_CIPHER_SERVER_PREFERENCE) == 0); in test_SSL_clear_options()
|
/external/conscrypt/common/src/main/java/org/conscrypt/ |
D | NativeSsl.java | 346 ssl, this, NativeCrypto.SSL_get_options(ssl, this) | SSL_OP_NO_TICKET); in initialize()
|
D | NativeCrypto.java | 1459 static native long SSL_get_options(long ssl, NativeSsl ssl_holder); in SSL_get_options() method in NativeCrypto
|
/external/conscrypt/repackaged/common/src/main/java/com/android/org/conscrypt/ |
D | NativeSsl.java | 347 ssl, this, NativeCrypto.SSL_get_options(ssl, this) | SSL_OP_NO_TICKET); in initialize()
|
D | NativeCrypto.java | 1500 static native long SSL_get_options(long ssl, NativeSsl ssl_holder); in SSL_get_options() method in NativeCrypto
|
/external/libwebsockets/lib/tls/mbedtls/wrapper/library/ |
D | ssl_lib.c | 693 unsigned long SSL_get_options(SSL *ssl) in SSL_get_options() function
|
/external/boringssl/src/include/openssl/ |
D | ssl.h | 747 OPENSSL_EXPORT uint32_t SSL_get_options(const SSL *ssl); 5368 #define SSL_get_options SSL_get_options macro
|
/external/cronet/third_party/boringssl/src/include/openssl/ |
D | ssl.h | 747 OPENSSL_EXPORT uint32_t SSL_get_options(const SSL *ssl); 5344 #define SSL_get_options SSL_get_options macro
|
/external/rust/crates/quiche/deps/boringssl/src/include/openssl/ |
D | ssl.h | 731 OPENSSL_EXPORT uint32_t SSL_get_options(const SSL *ssl); 5169 #define SSL_get_options SSL_get_options macro
|