HomeSort by relevance Sort by last modified time
    Searched defs:ERR_STATE (Results 1 - 6 of 6) sorted by null

  /external/chromium_org/third_party/boringssl/src/crypto/err/
err_impl.c 117 DEFINE_LHASH_OF(ERR_STATE);
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 pattern, *state, *race_state
    [all...]
  /external/openssl/crypto/err/
err.c 123 DECLARE_LHASH_OF(ERR_STATE);
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_get(int create)
    [all...]
err.h 158 } ERR_STATE;
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/chromium_org/third_party/boringssl/src/include/openssl/
err.h 352 /* ERR_STATE contains the per-thread, error queue. */
365 } ERR_STATE;
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/include/openssl/
err.h 158 } ERR_STATE;
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/chromium_org/third_party/android_platform/webview/
frameworks.jar 

Completed in 113 milliseconds