Home
last modified time | relevance | path

Searched refs:i2d_SSL_SESSION (Results 1 – 15 of 15) sorted by relevance

/external/grpc-grpc/src/core/tsi/ssl/session_cache/
Dssl_session_openssl.cc41 int size = i2d_SSL_SESSION(session.get(), nullptr); in OpenSslCachedSession()
45 int second_size = i2d_SSL_SESSION(session.get(), &start); in OpenSslCachedSession()
/external/conscrypt/repackaged/common/src/main/java/com/android/org/conscrypt/
DNativeSslSession.java315 byte[] data = NativeCrypto.i2d_SSL_SESSION(ref.address); in toBytes()
DNativeCrypto.java1235 static native byte[] i2d_SSL_SESSION(long sslSessionNativePointer); in i2d_SSL_SESSION() method in NativeCrypto
/external/conscrypt/common/src/main/java/org/conscrypt/
DNativeSslSession.java314 byte[] data = NativeCrypto.i2d_SSL_SESSION(ref.address); in toBytes()
DNativeCrypto.java1189 static native byte[] i2d_SSL_SESSION(long sslSessionNativePointer); in i2d_SSL_SESSION() method in NativeCrypto
/external/boringssl/src/ssl/
Dssl_asn1.cc791 int i2d_SSL_SESSION(SSL_SESSION *in, uint8_t **pp) { in i2d_SSL_SESSION() function
Dssl_test.cc788 int len = i2d_SSL_SESSION(session.get(), NULL); in TestSSL_SESSIONEncoding()
801 len = i2d_SSL_SESSION(session.get(), &ptr); in TestSSL_SESSIONEncoding()
/external/grpc-grpc/src/objective-c/
Dgrpc_shadow_boringssl_symbol_list29 i2d_SSL_SESSION
DBoringSSL-GRPC.podspec1581 '#define i2d_SSL_SESSION GRPC_SHADOW_i2d_SSL_SESSION',
/external/conscrypt/openjdk/src/test/java/org/conscrypt/
DNativeCryptoTest.java2612 NativeCrypto.i2d_SSL_SESSION(NULL); in i2d_SSL_Session_WithNullSessionShouldThrow()
2623 byte[] b = NativeCrypto.i2d_SSL_SESSION(session); in test_i2d_SSL_SESSION()
/external/python/cpython3/Modules/
D_ssl.c2706 slen = i2d_SSL_SESSION(session, NULL); in _ssl_session_dup()
2716 if (!i2d_SSL_SESSION(session, &p)) { in _ssl_session_dup()
/external/conscrypt/repackaged/openjdk/src/test/java/com/android/org/conscrypt/
DNativeCryptoTest.java2620 NativeCrypto.i2d_SSL_SESSION(NULL); in i2d_SSL_Session_WithNullSessionShouldThrow()
2631 byte[] b = NativeCrypto.i2d_SSL_SESSION(session); in test_i2d_SSL_SESSION()
/external/boringssl/src/include/openssl/
Dssl.h4022 OPENSSL_EXPORT int i2d_SSL_SESSION(SSL_SESSION *in, uint8_t **pp);
/external/grpc-grpc/src/core/tsi/
Dgrpc_shadow_boringssl.h57 #define i2d_SSL_SESSION GRPC_SHADOW_i2d_SSL_SESSION macro
/external/conscrypt/common/src/jni/main/cpp/conscrypt/
Dnative_crypto.cc8762 return ASN1ToByteArray<SSL_SESSION>(env, ssl_session, i2d_SSL_SESSION); in NativeCrypto_i2d_SSL_SESSION()
10178 CONSCRYPT_NATIVE_METHOD(i2d_SSL_SESSION, "(J)[B"),