Searched refs:SSL_get_options (Results 1 - 9 of 9) sorted by relevance

/external/boringssl/src/ssl/
H A Dd1_lib.c255 !(SSL_get_options(s) & SSL_OP_NO_QUERY_MTU)) {
H A Dt1_lib.c906 if (!(SSL_get_options(s) & SSL_OP_NO_TICKET)) {
1218 if (s->tlsext_ticket_expected && !(SSL_get_options(s) & SSL_OP_NO_TICKET)) {
1761 if ((SSL_get_options(s) & SSL_OP_NO_TICKET) || CBS_len(&extension) > 0) {
2053 if ((SSL_get_options(s) & SSL_OP_NO_TICKET) ||
H A Dd1_both.c269 !(SSL_get_options(s) & SSL_OP_NO_QUERY_MTU)) {
H A Dssl_lib.c234 if (SSL_IS_DTLS(ssl) && (SSL_get_options(ssl) & SSL_OP_NO_QUERY_MTU)) {
1011 uint32_t SSL_get_options(const SSL *ssl) { return ssl->options; } function
/external/conscrypt/src/test/java/org/conscrypt/
H A DNativeCryptoTest.java328 assertTrue((NativeCrypto.SSL_get_options(s) & NativeConstants.SSL_OP_NO_SSLv3) == 0);
329 assertTrue((NativeCrypto.SSL_get_options(s) & NativeConstants.SSL_OP_NO_TLSv1) == 0);
330 assertTrue((NativeCrypto.SSL_get_options(s) & NativeConstants.SSL_OP_NO_TLSv1_1) == 0);
331 assertTrue((NativeCrypto.SSL_get_options(s) & NativeConstants.SSL_OP_NO_TLSv1_2) == 0);
516 NativeCrypto.SSL_get_options(NULL);
523 assertTrue(NativeCrypto.SSL_get_options(s) != 0);
537 assertTrue((NativeCrypto.SSL_get_options(s) & NativeConstants.SSL_OP_NO_SSLv3) == 0);
539 assertTrue((NativeCrypto.SSL_get_options(s) & NativeConstants.SSL_OP_NO_SSLv3) != 0);
553 assertTrue((NativeCrypto.SSL_get_options(s) & NativeConstants.SSL_OP_NO_SSLv3) == 0);
555 assertTrue((NativeCrypto.SSL_get_options(
[all...]
/external/boringssl/include/openssl/
H A Dssl.h408 /* SSL_get_options returns a bitmask of |SSL_OP_*| values that represent all the
410 OPENSSL_EXPORT uint32_t SSL_get_options(const SSL *ssl);
2513 #define SSL_get_options SSL_get_options macro
/external/boringssl/src/include/openssl/
H A Dssl.h408 /* SSL_get_options returns a bitmask of |SSL_OP_*| values that represent all the
410 OPENSSL_EXPORT uint32_t SSL_get_options(const SSL *ssl);
2513 #define SSL_get_options SSL_get_options macro
/external/conscrypt/src/main/java/org/conscrypt/
H A DNativeCrypto.java831 public static native long SSL_get_options(long ssl); method in class:NativeCrypto
/external/conscrypt/src/main/native/
H A Dorg_conscrypt_NativeCrypto.cpp8580 * public static native long SSL_get_options(long ssl);
8589 long options = SSL_get_options(ssl);
10832 NATIVE_METHOD(NativeCrypto, SSL_get_options, "(J)J"),

Completed in 96 milliseconds