HomeSort by relevance Sort by last modified time
    Searched refs:SSL_SESSION (Results 1 - 25 of 47) sorted by null

1 2

  /external/chromium_org/third_party/openssl/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 368 typedef struct ssl_session_st SSL_SESSION;
771 DECLARE_LHASH_OF(SSL_SESSION);
782 LHASH_OF(SSL_SESSION) *sessions;
    [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)
dtls1.h 136 SSL_SESSION *session;
ssl_asn1.c 122 int i2d_SSL_SESSION(SSL_SESSION *in, unsigned char **pp)
379 SSL_SESSION *d2i_SSL_SESSION(SSL_SESSION **a, const unsigned char **pp,
386 M_ASN1_D2I_vars(a,SSL_SESSION *,SSL_SESSION_new);
ssl_lib.c 450 SSL_SESSION r, *p;
1126 LHASH_OF(SSL_SESSION) *SSL_CTX_sessions(SSL_CTX *ctx)
    [all...]
t1_lib.c 125 SSL_SESSION **psess);
    [all...]
s3_pkt.c 289 SSL_SESSION *sess;
642 SSL_SESSION *sess;
    [all...]
ssl_locl.h 837 int ssl_cipher_get_evp(const SSL_SESSION *s,const EVP_CIPHER **enc,
    [all...]
  /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 368 typedef struct ssl_session_st SSL_SESSION;
771 DECLARE_LHASH_OF(SSL_SESSION);
782 LHASH_OF(SSL_SESSION) *sessions;
    [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)
dtls1.h 136 SSL_SESSION *session;
ssl_asn1.c 122 int i2d_SSL_SESSION(SSL_SESSION *in, unsigned char **pp)
379 SSL_SESSION *d2i_SSL_SESSION(SSL_SESSION **a, const unsigned char **pp,
386 M_ASN1_D2I_vars(a,SSL_SESSION *,SSL_SESSION_new);
ssl_lib.c 461 SSL_SESSION r, *p;
1139 LHASH_OF(SSL_SESSION) *SSL_CTX_sessions(SSL_CTX *ctx)
    [all...]
t1_lib.c 125 SSL_SESSION **psess);
    [all...]
s3_pkt.c 289 SSL_SESSION *sess;
642 SSL_SESSION *sess;
    [all...]
  /external/chromium_org/third_party/openssl/openssl/apps/
sess_id.c 86 static SSL_SESSION *load_sess_id(char *file, int format);
92 SSL_SESSION *x=NULL;
183 SSL_SESSION *s;
254 BIO_printf(bio_err,"unable to write SSL_SESSION\n");
281 static SSL_SESSION *load_sess_id(char *infile, int format)
283 SSL_SESSION *x=NULL;
313 BIO_printf(bio_err,"unable to load SSL_SESSION\n");
  /external/openssl/apps/
sess_id.c 86 static SSL_SESSION *load_sess_id(char *file, int format);
92 SSL_SESSION *x=NULL;
183 SSL_SESSION *s;
254 BIO_printf(bio_err,"unable to write SSL_SESSION\n");
281 static SSL_SESSION *load_sess_id(char *infile, int format)
283 SSL_SESSION *x=NULL;
313 BIO_printf(bio_err,"unable to load SSL_SESSION\n");
  /external/chromium_org/third_party/openssl/openssl/include/openssl/
ssl.h 368 typedef struct ssl_session_st SSL_SESSION;
771 DECLARE_LHASH_OF(SSL_SESSION);
782 LHASH_OF(SSL_SESSION) *sessions;
    [all...]
dtls1.h 136 SSL_SESSION *session;
  /external/openssl/include/openssl/
ssl.h 368 typedef struct ssl_session_st SSL_SESSION;
771 DECLARE_LHASH_OF(SSL_SESSION);
782 LHASH_OF(SSL_SESSION) *sessions;
    [all...]
dtls1.h 136 SSL_SESSION *session;
  /external/chromium/net/socket/
ssl_client_socket_openssl.cc 204 // OpenSSL manages a cache of SSL_SESSION, this class provides the application
211 void OnSessionAdded(const HostPortPair& host_and_port, SSL_SESSION* session) {
214 crypto::ScopedOpenSSL<SSL_SESSION, SSL_SESSION_free> session_to_free;
233 void OnSessionRemoved(SSL_SESSION* session) {
236 crypto::ScopedOpenSSL<SSL_SESSION, SSL_SESSION_free> session_to_free;
260 SSL_SESSION* session = it->second;
276 typedef std::map<HostPortPair, SSL_SESSION*> HostPortMap;
277 typedef std::map<SSL_SESSION*, HostPortMap::iterator> SessionMap;
329 static int NewSessionCallbackStatic(SSL* ssl, SSL_SESSION* session) {
333 int NewSessionCallback(SSL* ssl, SSL_SESSION* session)
    [all...]
  /external/chromium_org/net/socket/
ssl_client_socket_openssl.cc 217 // OpenSSL manages a cache of SSL_SESSION, this class provides the application
226 SSL_SESSION* session) {
229 crypto::ScopedOpenSSL<SSL_SESSION, SSL_SESSION_free> session_to_free;
250 void OnSessionRemoved(SSL_SESSION* session) {
253 crypto::ScopedOpenSSL<SSL_SESSION, SSL_SESSION_free> session_to_free;
277 SSL_SESSION* session = it->second;
307 typedef std::map<std::string, SSL_SESSION*> HostPortMap;
308 typedef std::map<SSL_SESSION*, HostPortMap::iterator> SessionMap;
360 static int NewSessionCallbackStatic(SSL* ssl, SSL_SESSION* session) {
364 int NewSessionCallback(SSL* ssl, SSL_SESSION* session)
    [all...]

Completed in 470 milliseconds

1 2