HomeSort by relevance Sort by last modified time
    Searched full:ssl_session (Results 1 - 25 of 27) sorted by null

1 2

  /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 444 SSL_SESSION r, *p;
1092 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
d1_pkt.c 377 SSL_SESSION *sess;
531 SSL_SESSION *sess;
    [all...]
s3_pkt.c 287 SSL_SESSION *sess;
662 SSL_SESSION *sess;
    [all...]
ssl_locl.h 805 int ssl_cipher_get_evp(const SSL_SESSION *s,const EVP_CIPHER **enc,
    [all...]
d1_clnt.c 606 SSL_SESSION *sess = s->session;
    [all...]
s3_clnt.c 661 SSL_SESSION *sess = s->session;
881 * SSL_SESSION so we don't stuff up other people */
    [all...]
  /libcore/luni/src/main/native/
NativeCrypto.cpp 372 static SSL_SESSION* to_SSL_SESSION(JNIEnv* env, int ssl_session_address, bool throwIfNull) {
373 SSL_SESSION* ssl_session local
374 = reinterpret_cast<SSL_SESSION*>(static_cast<uintptr_t>(ssl_session_address));
375 if ((ssl_session == NULL) && throwIfNull) {
376 JNI_TRACE("ssl_session == null");
377 jniThrowNullPointerException(env, "ssl_session == null");
379 return ssl_session;
2277 SSL_SESSION* ssl_session = to_SSL_SESSION(env, ssl_session_address, false); local
2518 SSL_SESSION* ssl_session = SSL_get1_session(ssl); local
3218 SSL_SESSION* ssl_session = to_SSL_SESSION(env, ssl_session_address, true); local
3238 SSL_SESSION* ssl_session = to_SSL_SESSION(env, ssl_session_address, true); local
3265 SSL_SESSION* ssl_session = to_SSL_SESSION(env, ssl_session_address, true); local
3279 SSL_SESSION* ssl_session = to_SSL_SESSION(env, ssl_session_address, true); local
3297 SSL_SESSION* ssl_session = to_SSL_SESSION(env, ssl_session_address, true); local
3331 SSL_SESSION* ssl_session = to_SSL_SESSION(env, ssl_session_address, true); local
3346 SSL_SESSION* ssl_session = to_SSL_SESSION(env, ssl_session_address, true); local
3387 SSL_SESSION* ssl_session = d2i_SSL_SESSION(NULL, &ucp, bytes.size()); local
    [all...]
  /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/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 */
  /external/openssl/patches/
jsse.patch 5 SSL_SESSION *session;
31 void SSL_SESSION_free(SSL_SESSION *ses);
32 int i2d_SSL_SESSION(SSL_SESSION *in,unsigned char **pp);
33 int SSL_set_session(SSL *to, SSL_SESSION *session);
35 int SSL_CTX_add_session(SSL_CTX *s, SSL_SESSION *c);
36 int SSL_CTX_remove_session(SSL_CTX *,SSL_SESSION *c);
290 SSL_SESSION *ss=NULL;
small_records.patch 30 SSL_SESSION *sess;
  /libcore/luni/src/main/java/org/apache/harmony/xnet/provider/jsse/
OpenSSLSessionImpl.java 115 * SSL_SESSION. It can change during the lifetime of the session
223 * 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 */

Completed in 1933 milliseconds

1 2