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

1 2

  /external/chromium_org/third_party/boringssl/src/include/openssl/
lhash_macros.h 211 /* SSL_SESSION */
213 ((LHASH_OF(SSL_SESSION) *)lh_new( \
214 CHECKED_CAST(lhash_hash_func, uint32_t (*)(const SSL_SESSION *), hash), \
216 int (*)(const SSL_SESSION *a, const SSL_SESSION *b), \
220 lh_free(CHECKED_CAST(_LHASH *, LHASH_OF(SSL_SESSION) *, lh));
223 lh_num_items(CHECKED_CAST(_LHASH *, LHASH_OF(SSL_SESSION) *, lh))
226 ((SSL_SESSION *)lh_retrieve( \
227 CHECKED_CAST(_LHASH *, LHASH_OF(SSL_SESSION) *, lh), \
228 CHECKED_CAST(void *, SSL_SESSION *, data))
    [all...]
ssl.h 286 typedef struct ssl_session_st SSL_SESSION;
750 DECLARE_LHASH_OF(SSL_SESSION);
    [all...]
dtls1.h 126 SSL_SESSION *session;
  /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 369 typedef struct ssl_session_st SSL_SESSION;
    [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 138 SSL_SESSION *session;
ssl_asn1.c 123 int i2d_SSL_SESSION(SSL_SESSION *in, unsigned char **pp)
391 SSL_SESSION *d2i_SSL_SESSION(SSL_SESSION **a, const unsigned char **pp,
398 M_ASN1_D2I_vars(a,SSL_SESSION *,SSL_SESSION_new);
ssl_lib.c 468 SSL_SESSION r, *p;
1151 LHASH_OF(SSL_SESSION) *SSL_CTX_sessions(SSL_CTX *ctx)
    [all...]
s3_pkt.c 296 SSL_SESSION *sess;
703 SSL_SESSION *sess;
    [all...]
ssl_locl.h 848 int ssl_cipher_get_evp(const SSL_SESSION *s,const EVP_CIPHER **enc,
    [all...]
  /external/chromium_org/third_party/boringssl/src/ssl/
ssl_sess.c 151 static void SSL_SESSION_list_remove(SSL_CTX *ctx, SSL_SESSION *s);
152 static void SSL_SESSION_list_add(SSL_CTX *ctx,SSL_SESSION *s);
153 static int remove_session_lock(SSL_CTX *ctx, SSL_SESSION *c, int lck);
155 SSL_SESSION *SSL_magic_pending_session_ptr(void)
157 return (SSL_SESSION*) &g_pending_session_magic;
160 SSL_SESSION *SSL_get_session(const SSL *ssl)
166 SSL_SESSION *SSL_get1_session(SSL *ssl)
169 SSL_SESSION *sess;
188 int SSL_SESSION_set_ex_data(SSL_SESSION *s, int idx, void *arg)
193 void *SSL_SESSION_get_ex_data(const SSL_SESSION *s, int idx
    [all...]
ssl_txt.c 92 int SSL_SESSION_print_fp(FILE *fp, const SSL_SESSION *x)
108 int SSL_SESSION_print(BIO *bp, const SSL_SESSION *x)
ssl_asn1.c 126 int i2d_SSL_SESSION(SSL_SESSION *in, unsigned char **pp)
359 SSL_SESSION *d2i_SSL_SESSION(SSL_SESSION **a, const unsigned char **pp,
366 M_ASN1_D2I_vars(a,SSL_SESSION *,SSL_SESSION_new);
ssl_locl.h 819 int ssl_cipher_get_evp_aead(const SSL_SESSION *s, const EVP_AEAD **aead);
820 int ssl_cipher_get_evp(const SSL_SESSION *s,const EVP_CIPHER **enc,
822 int ssl_cipher_get_mac(const SSL_SESSION *s, const EVP_MD **md, int *mac_pkey_type, int *mac_secret_size);
    [all...]
ssl_lib.c 476 SSL_SESSION r, *p;
1208 LHASH_OF(SSL_SESSION) *SSL_CTX_sessions(SSL_CTX *ctx)
    [all...]
ssl_ciph.c 244 int ssl_cipher_get_evp_aead(const SSL_SESSION *s, const EVP_AEAD **aead)
278 int ssl_cipher_get_evp(const SSL_SESSION *s, const EVP_CIPHER **enc,
339 int ssl_cipher_get_mac(const SSL_SESSION *s, const EVP_MD **md, int *mac_pkey_type, int *mac_secret_size)
    [all...]
s3_pkt.c 297 SSL_SESSION *sess;
649 SSL_SESSION *sess;
    [all...]
  /external/chromium_org/net/socket/
ssl_session_cache_openssl.cc 69 explicit SessionId(SSL_SESSION* session)
119 // |ordering_| is a doubly-linked list of SSL_SESSION handles, ordered in
130 // SSL_SESSION objects are reference-counted, and owned by the cache. This
137 // 12 (ordering_ node, including SSL_SESSION handle)
146 // the size of SSL_SESSION objects and heap fragmentation.
221 SSL_SESSION* session = *it->second;
246 SSL_SESSION* session = *it->second;
256 SSL_SESSION* session = SSL_get_session(ssl);
270 SSL_SESSION* session = ordering_.front();
277 // Type for list of SSL_SESSION handles, ordered in MRU order
    [all...]
ssl_session_cache_openssl_unittest.cc 210 SSL_SESSION* session = ssl.get()->session;
272 SSL_SESSION* session = ssl.get()->session;
283 SSL_SESSION* session2 = ssl2.get()->session;
  /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/openssl/include/openssl/
ssl.h 369 typedef struct ssl_session_st SSL_SESSION;
    [all...]
dtls1.h 138 SSL_SESSION *session;
  /external/chromium_org/third_party/boringssl/src/ssl/test/
bssl_shim.cc 283 static int do_exchange(SSL_SESSION **out_session,
288 SSL_SESSION *session) {
589 SSL_SESSION *session = NULL;
  /external/openssl/crypto/stack/
safestack.h     [all...]

Completed in 636 milliseconds

1 2