Searched defs:ERR_STRING_DATA (Results 1 - 5 of 5) sorted by path

/external/chromium_org/third_party/boringssl/src/crypto/err/
H A Derr_impl.c118 DEFINE_LHASH_OF(ERR_STRING_DATA); variable
126 static LHASH_OF(ERR_STRING_DATA) *error_hash = NULL;
131 /* err_string_data_hash is an lhash hash function for ERR_STRING_DATA. */
132 static uint32_t err_string_data_hash(const ERR_STRING_DATA *a) {
136 /* err_string_data_cmp is an lhash compare function for ERR_STRING_DATA. */
137 static int err_string_data_cmp(const ERR_STRING_DATA *a,
138 const ERR_STRING_DATA *b) {
145 static LHASH_OF(ERR_STRING_DATA) * error_hash_get_write_locked(void) {
153 /* err_get_item returns an ERR_STRING_DATA with an |error| member that
155 static ERR_STRING_DATA *err_get_ite
[all...]
/external/chromium_org/third_party/boringssl/src/include/openssl/
H A Derr.h467 /* ERR_STRING_DATA is the type of an lhash node that contains a mapping from a
472 } ERR_STRING_DATA; typedef in typeref:struct:err_string_data_st
474 /* ERR_load_strings loads an array of ERR_STRING_DATA into the hash table. The
476 OPENSSL_EXPORT void ERR_load_strings(const ERR_STRING_DATA *str);
482 ERR_STRING_DATA *(*get_item)(uint32_t packed_error);
483 ERR_STRING_DATA *(*set_item)(const ERR_STRING_DATA *);
484 ERR_STRING_DATA *(*del_item)(uint32_t packed_error);
/external/openssl/crypto/err/
H A Derr.c122 DECLARE_LHASH_OF(ERR_STRING_DATA); variable
125 static void err_load_strings(int lib, ERR_STRING_DATA *str);
129 static ERR_STRING_DATA ERR_str_libraries[]=
162 static ERR_STRING_DATA ERR_str_functs[]=
180 static ERR_STRING_DATA ERR_str_reasons[]=
230 LHASH_OF(ERR_STRING_DATA) *(*cb_err_get)(int create);
232 ERR_STRING_DATA *(*cb_err_get_item)(const ERR_STRING_DATA *);
233 ERR_STRING_DATA *(*cb_err_set_item)(ERR_STRING_DATA *);
[all...]
H A Derr.h317 } ERR_STRING_DATA; typedef in typeref:struct:ERR_string_data_st
350 void ERR_load_strings(int lib,ERR_STRING_DATA str[]);
351 void ERR_unload_strings(int lib,ERR_STRING_DATA str[]);
363 LHASH_OF(ERR_STRING_DATA) *ERR_get_string_table(void);
/external/openssl/include/openssl/
H A Derr.h317 } ERR_STRING_DATA; typedef in typeref:struct:ERR_string_data_st
350 void ERR_load_strings(int lib,ERR_STRING_DATA str[]);
351 void ERR_unload_strings(int lib,ERR_STRING_DATA str[]);
363 LHASH_OF(ERR_STRING_DATA) *ERR_get_string_table(void);

Completed in 309 milliseconds