Searched refs:ERR_STATE (Results 1 - 10 of 10) sorted by relevance

/external/chromium_org/third_party/boringssl/src/crypto/err/
H A Derr_impl.c117 DEFINE_LHASH_OF(ERR_STATE); variable
120 /* state_hash is a map from thread ID to ERR_STATE. It works like thread-local
122 static LHASH_OF(ERR_STATE) *state_hash = NULL;
202 /* err_state_hash is an lhash hash function for ERR_STATE. */
203 static uint32_t err_state_hash(const ERR_STATE *a) {
207 /* err_state_cmp is an lhash compare function for ERR_STATE. */
208 static int err_state_cmp(const ERR_STATE *a, const ERR_STATE *b) {
213 static ERR_STATE *err_get_state(void) {
215 ERR_STATE patter
[all...]
H A Derr.c164 /* err_get_state gets the ERR_STATE object for the current thread. */
165 static ERR_STATE *err_get_state(void) {
173 ERR_STATE *state;
268 ERR_STATE *const state = err_get_state();
280 ERR_STATE *state;
465 ERR_STATE *const state = err_get_state();
481 ERR_STATE *const state = err_get_state();
582 ERR_STATE *const state = err_get_state();
592 ERR_STATE *const state = err_get_state();
/external/chromium_org/third_party/boringssl/src/include/openssl/
H A Dlhash_macros.h95 /* ERR_STATE */
97 ((LHASH_OF(ERR_STATE) *)lh_new( \
98 CHECKED_CAST(lhash_hash_func, uint32_t (*)(const ERR_STATE *), hash), \
100 int (*)(const ERR_STATE *a, const ERR_STATE *b), comp)))
103 lh_free(CHECKED_CAST(_LHASH *, LHASH_OF(ERR_STATE) *, lh));
106 lh_num_items(CHECKED_CAST(_LHASH *, LHASH_OF(ERR_STATE) *, lh))
109 ((ERR_STATE *)lh_retrieve(CHECKED_CAST(_LHASH *, LHASH_OF(ERR_STATE) *, lh), \
110 CHECKED_CAST(void *, ERR_STATE *, dat
[all...]
H A Derr.h352 /* ERR_STATE contains the per-thread, error queue. */
365 } ERR_STATE; typedef in typeref:struct:err_state_st
486 /* get_state returns the ERR_STATE for the current thread. This function
488 ERR_STATE *(*get_state)(void);
490 /* release_state returns the |ERR_STATE| for the given thread, or NULL if
492 * the |ERR_STATE| and deletes it from its data structures. */
493 ERR_STATE *(*release_state)(const CRYPTO_THREADID *tid);
/external/openssl/crypto/err/
H A Derr.c123 DECLARE_LHASH_OF(ERR_STATE); variable
127 static void ERR_STATE_free(ERR_STATE *s);
236 LHASH_OF(ERR_STATE) *(*cb_thread_get)(int create);
237 void (*cb_thread_release)(LHASH_OF(ERR_STATE) **hash);
238 ERR_STATE *(*cb_thread_get_item)(const ERR_STATE *);
239 ERR_STATE *(*cb_thread_set_item)(ERR_STATE *);
240 void (*cb_thread_del_item)(const ERR_STATE *);
251 static LHASH_OF(ERR_STATE) *int_thread_ge
[all...]
H A Derr.h158 } ERR_STATE; typedef in typeref:struct:err_state_st
360 ERR_STATE *ERR_get_state(void);
364 LHASH_OF(ERR_STATE) *ERR_get_err_state_table(void);
365 void ERR_release_err_state_table(LHASH_OF(ERR_STATE) **hash);
/external/openssl/include/openssl/
H A Derr.h158 } ERR_STATE; typedef in typeref:struct:err_state_st
360 ERR_STATE *ERR_get_state(void);
364 LHASH_OF(ERR_STATE) *ERR_get_err_state_table(void);
365 void ERR_release_err_state_table(LHASH_OF(ERR_STATE) **hash);
H A Dsafestack.h2504 #define lh_ERR_STATE_new() LHM_lh_new(ERR_STATE,err_state)
2505 #define lh_ERR_STATE_insert(lh,inst) LHM_lh_insert(ERR_STATE,lh,inst)
2506 #define lh_ERR_STATE_retrieve(lh,inst) LHM_lh_retrieve(ERR_STATE,lh,inst)
2507 #define lh_ERR_STATE_delete(lh,inst) LHM_lh_delete(ERR_STATE,lh,inst)
2508 #define lh_ERR_STATE_doall(lh,fn) LHM_lh_doall(ERR_STATE,lh,fn)
2510 LHM_lh_doall_arg(ERR_STATE,lh,fn,arg_type,arg)
2511 #define lh_ERR_STATE_error(lh) LHM_lh_error(ERR_STATE,lh)
2512 #define lh_ERR_STATE_num_items(lh) LHM_lh_num_items(ERR_STATE,lh)
2513 #define lh_ERR_STATE_down_load(lh) LHM_lh_down_load(ERR_STATE,lh)
2515 LHM_lh_node_stats_bio(ERR_STATE,l
[all...]
/external/openssl/crypto/stack/
H A Dsafestack.h2504 #define lh_ERR_STATE_new() LHM_lh_new(ERR_STATE,err_state)
2505 #define lh_ERR_STATE_insert(lh,inst) LHM_lh_insert(ERR_STATE,lh,inst)
2506 #define lh_ERR_STATE_retrieve(lh,inst) LHM_lh_retrieve(ERR_STATE,lh,inst)
2507 #define lh_ERR_STATE_delete(lh,inst) LHM_lh_delete(ERR_STATE,lh,inst)
2508 #define lh_ERR_STATE_doall(lh,fn) LHM_lh_doall(ERR_STATE,lh,fn)
2510 LHM_lh_doall_arg(ERR_STATE,lh,fn,arg_type,arg)
2511 #define lh_ERR_STATE_error(lh) LHM_lh_error(ERR_STATE,lh)
2512 #define lh_ERR_STATE_num_items(lh) LHM_lh_num_items(ERR_STATE,lh)
2513 #define lh_ERR_STATE_down_load(lh) LHM_lh_down_load(ERR_STATE,lh)
2515 LHM_lh_node_stats_bio(ERR_STATE,l
[all...]
/external/chromium_org/third_party/android_platform/webview/
H A Dframeworks.jarMETA-INF/ META-INF/MANIFEST.MF android/ android/location/ android/location/Address$1.class ...

Completed in 221 milliseconds