Home
last modified time | relevance | path

Searched refs:SSL_get_shutdown (Results 1 – 19 of 19) sorted by relevance

/external/curl/packages/vms/
Dgnv_conftest.c_first38 char SSL_get_shutdown(void) {return 0;}
51 #define SSL_get_shutdown SSL_GET_SHUTDOWN
/external/conscrypt/common/src/main/java/org/conscrypt/
DNativeSsl.java521 return (NativeCrypto.SSL_get_shutdown(ssl, this) & SSL_RECEIVED_SHUTDOWN) != 0; in wasShutdownReceived()
525 return (NativeCrypto.SSL_get_shutdown(ssl, this) & SSL_SENT_SHUTDOWN) != 0; in wasShutdownSent()
DNativeCrypto.java1159 static native int SSL_get_shutdown(long ssl, NativeSsl ssl_holder); in SSL_get_shutdown() method in NativeCrypto
/external/conscrypt/repackaged/common/src/main/java/com/android/org/conscrypt/
DNativeSsl.java522 return (NativeCrypto.SSL_get_shutdown(ssl, this) & SSL_RECEIVED_SHUTDOWN) != 0; in wasShutdownReceived()
526 return (NativeCrypto.SSL_get_shutdown(ssl, this) & SSL_SENT_SHUTDOWN) != 0; in wasShutdownSent()
DNativeCrypto.java1199 static native int SSL_get_shutdown(long ssl, NativeSsl ssl_holder); in SSL_get_shutdown() method in NativeCrypto
/external/curl/lib/
Dsetup-vms.h297 #define SSL_get_shutdown SSL_GET_SHUTDOWN macro
Dcurl_config.h.in607 /* Define to 1 if you have the `SSL_get_shutdown' function. */
Dcurl_config.h.cmake581 /* Define to 1 if you have the `SSL_get_shutdown' function. */
/external/boringssl/src/ssl/
Dssl_lib.cc2377 assert((SSL_get_shutdown(ssl) & mode) == SSL_get_shutdown(ssl)); in SSL_set_shutdown()
2390 int SSL_get_shutdown(const SSL *ssl) { in SSL_get_shutdown() function
/external/libevent/
Dbufferevent_openssl.c504 if (SSL_get_shutdown(bev_ssl->ssl) & SSL_RECEIVED_SHUTDOWN) in conn_closed()
/external/grpc-grpc/src/objective-c/
Dgrpc_shadow_boringssl_symbol_list228 SSL_get_shutdown
DBoringSSL-GRPC.podspec1780 '#define SSL_get_shutdown GRPC_SHADOW_SSL_get_shutdown',
/external/boringssl/src/include/openssl/
Dssl.h3764 OPENSSL_EXPORT int SSL_get_shutdown(const SSL *ssl);
/external/curl/lib/vtls/
Dopenssl.c1374 switch(SSL_get_shutdown(BACKEND->handle)) { in Curl_ossl_shutdown()
/external/python/cpython2/Modules/
D_ssl.c1926 (SSL_get_shutdown(self->ssl) == in PySSL_SSLread()
/external/grpc-grpc/src/core/tsi/
Dgrpc_shadow_boringssl.h256 #define SSL_get_shutdown GRPC_SHADOW_SSL_get_shutdown macro
/external/curl/
Dconfigure.ac1830 dnl SSL_get_shutdown (but this check won't actually detect it there
1835 SSL_get_shutdown \
/external/python/cpython3/Modules/
D_ssl.c2469 SSL_get_shutdown(self->ssl) == SSL_RECEIVED_SHUTDOWN) in _ssl__SSLSocket_read_impl()
/external/conscrypt/common/src/jni/main/cpp/conscrypt/
Dnative_crypto.cc8490 int status = SSL_get_shutdown(ssl); in NativeCrypto_SSL_get_shutdown()
10163 CONSCRYPT_NATIVE_METHOD(SSL_get_shutdown, "(J" REF_SSL ")I"),