/external/openssl/ssl/ |
ssl_sess.c | 146 static void SSL_SESSION_list_remove(SSL_CTX *ctx, SSL_SESSION *s); 147 static void SSL_SESSION_list_add(SSL_CTX *ctx,SSL_SESSION *s); 148 static int remove_session_lock(SSL_CTX *ctx, SSL_SESSION *c, int lck); 150 SSL_SESSION *SSL_get_session(const SSL *ssl) 156 SSL_SESSION *SSL_get1_session(SSL *ssl) 159 SSL_SESSION *sess; 178 int SSL_SESSION_set_ex_data(SSL_SESSION *s, int idx, void *arg) 183 void *SSL_SESSION_get_ex_data(const SSL_SESSION *s, int idx) 188 SSL_SESSION *SSL_SESSION_new(void) 190 SSL_SESSION *ss [all...] |
ssl.h | 515 } SSL_SESSION; 690 DECLARE_LHASH_OF(SSL_SESSION); 701 LHASH_OF(SSL_SESSION) *sessions; 728 int (*new_session_cb)(struct ssl_st *ssl,SSL_SESSION *sess); 729 void (*remove_session_cb)(struct ssl_ctx_st *ctx,SSL_SESSION *sess); 730 SSL_SESSION *(*get_session_cb)(struct ssl_st *ssl, [all...] |
ssl_txt.c | 90 int SSL_SESSION_print_fp(FILE *fp, const SSL_SESSION *x) 107 int SSL_SESSION_print(BIO *bp, const SSL_SESSION *x)
|
ssl_asn1.c | 119 int i2d_SSL_SESSION(SSL_SESSION *in, unsigned char **pp) 357 SSL_SESSION *d2i_SSL_SESSION(SSL_SESSION **a, const unsigned char **pp, 364 M_ASN1_D2I_vars(a,SSL_SESSION *,SSL_SESSION_new);
|
dtls1.h | 127 SSL_SESSION *session;
|
ssl_lib.c | 447 SSL_SESSION r, *p; 1100 LHASH_OF(SSL_SESSION) *SSL_CTX_sessions(SSL_CTX *ctx) [all...] |
t1_lib.c | 124 SSL_SESSION **psess); [all...] |
s2_clnt.c | 616 SSL_SESSION *sess; 1000 /* Make sure we were not trying to re-use an old SSL_SESSION
|
s3_pkt.c | 288 SSL_SESSION *sess; 663 SSL_SESSION *sess; [all...] |
ssl_locl.h | 805 int ssl_cipher_get_evp(const SSL_SESSION *s,const EVP_CIPHER **enc, [all...] |
d1_pkt.c | 374 SSL_SESSION *sess; [all...] |
d1_clnt.c | 608 SSL_SESSION *sess = s->session; [all...] |
/libcore/luni/src/main/native/ |
org_apache_harmony_xnet_provider_jsse_NativeCrypto.cpp | 398 static SSL_SESSION* to_SSL_SESSION(JNIEnv* env, int ssl_session_address, bool throwIfNull) { 399 SSL_SESSION* ssl_session local 400 = reinterpret_cast<SSL_SESSION*>(static_cast<uintptr_t>(ssl_session_address)); 401 if ((ssl_session == NULL) && throwIfNull) { 402 JNI_TRACE("ssl_session == null"); 403 jniThrowNullPointerException(env, "ssl_session == null"); 405 return ssl_session; 2100 SSL_SESSION* ssl_session = to_SSL_SESSION(env, ssl_session_address, false); local 2343 SSL_SESSION* ssl_session = SSL_get1_session(ssl); local 2972 SSL_SESSION* ssl_session = to_SSL_SESSION(env, ssl_session_address, true); local 2992 SSL_SESSION* ssl_session = to_SSL_SESSION(env, ssl_session_address, true); local 3009 SSL_SESSION* ssl_session = to_SSL_SESSION(env, ssl_session_address, true); local 3023 SSL_SESSION* ssl_session = to_SSL_SESSION(env, ssl_session_address, true); local 3041 SSL_SESSION* ssl_session = to_SSL_SESSION(env, ssl_session_address, true); local 3075 SSL_SESSION* ssl_session = to_SSL_SESSION(env, ssl_session_address, true); local 3090 SSL_SESSION* ssl_session = to_SSL_SESSION(env, ssl_session_address, true); local 3131 SSL_SESSION* ssl_session = d2i_SSL_SESSION(NULL, &ucp, bytes.size()); local [all...] |
/external/openssl/patches/ |
jsse.patch | 5 SSL_SESSION *session; 47 SSL_SESSION *SSL_SESSION_new(void); 48 const unsigned char *SSL_SESSION_get_id(const SSL_SESSION *s, 50 +const char * SSL_SESSION_get_version(const SSL_SESSION *s); 52 int SSL_SESSION_print_fp(FILE *fp,const SSL_SESSION *ses); 55 void SSL_SESSION_free(SSL_SESSION *ses); 56 int i2d_SSL_SESSION(SSL_SESSION *in,unsigned char **pp); 57 int SSL_set_session(SSL *to, SSL_SESSION *session); 59 int SSL_CTX_add_session(SSL_CTX *s, SSL_SESSION *c); 60 int SSL_CTX_remove_session(SSL_CTX *,SSL_SESSION *c) [all...] |
small_records.patch | 30 SSL_SESSION *sess;
|
/external/openssl/apps/ |
sess_id.c | 86 static SSL_SESSION *load_sess_id(char *file, int format); 92 SSL_SESSION *x=NULL; 181 SSL_SESSION *s; 252 BIO_printf(bio_err,"unable to write SSL_SESSION\n"); 279 static SSL_SESSION *load_sess_id(char *infile, int format) 281 SSL_SESSION *x=NULL; 311 BIO_printf(bio_err,"unable to load SSL_SESSION\n");
|
/external/chromium/net/socket/ |
ssl_client_socket_openssl.cc | 202 // OpenSSL manages a cache of SSL_SESSION, this class provides the application 209 void OnSessionAdded(const HostPortPair& host_and_port, SSL_SESSION* session) { 212 crypto::ScopedOpenSSL<SSL_SESSION, SSL_SESSION_free> session_to_free; 231 void OnSessionRemoved(SSL_SESSION* session) { 234 crypto::ScopedOpenSSL<SSL_SESSION, SSL_SESSION_free> session_to_free; 258 SSL_SESSION* session = it->second; 274 typedef std::map<HostPortPair, SSL_SESSION*> HostPortMap; 275 typedef std::map<SSL_SESSION*, HostPortMap::iterator> SessionMap; 327 static int NewSessionCallbackStatic(SSL* ssl, SSL_SESSION* session) { 331 int NewSessionCallback(SSL* ssl, SSL_SESSION* session) [all...] |
/external/openssl/include/openssl/ |
ssl.h | 515 } SSL_SESSION; 690 DECLARE_LHASH_OF(SSL_SESSION); 701 LHASH_OF(SSL_SESSION) *sessions; 728 int (*new_session_cb)(struct ssl_st *ssl,SSL_SESSION *sess); 729 void (*remove_session_cb)(struct ssl_ctx_st *ctx,SSL_SESSION *sess); 730 SSL_SESSION *(*get_session_cb)(struct ssl_st *ssl, [all...] |
dtls1.h | 127 SSL_SESSION *session;
|
safestack.h | [all...] |
crypto.h | 293 * The current classes are SSL_CTX, SSL, SSL_SESSION, and a few more */
|
/libcore/luni/src/main/java/org/apache/harmony/xnet/provider/jsse/ |
OpenSSLSessionImpl.java | 106 * SSL_SESSION. It can change during the lifetime of the session 214 * field based on the native SSL_SESSION
|
/external/openssl/crypto/stack/ |
safestack.h | [all...] |
/external/openssl/crypto/ |
cryptlib.c | 143 "ssl_session",
|
crypto.h | 293 * The current classes are SSL_CTX, SSL, SSL_SESSION, and a few more */
|