Searched defs:packed_error (Results 1 – 8 of 8) sorted by relevance
/external/boringssl/src/rust/ |
D | rust_wrapper.c | 18 int ERR_GET_LIB_RUST(uint32_t packed_error) { in ERR_GET_LIB_RUST() 22 int ERR_GET_REASON_RUST(uint32_t packed_error) { in ERR_GET_REASON_RUST() 26 int ERR_GET_FUNC_RUST(uint32_t packed_error) { in ERR_GET_FUNC_RUST()
|
/external/boringssl/src/crypto/err/ |
D | err.c | 455 static const char *err_lib_error_string(uint32_t packed_error) { in err_lib_error_string() 464 const char *ERR_lib_error_string(uint32_t packed_error) { in ERR_lib_error_string() 469 const char *ERR_func_error_string(uint32_t packed_error) { in ERR_func_error_string() 473 static const char *err_reason_error_string(uint32_t packed_error) { in err_reason_error_string() 509 const char *ERR_reason_error_string(uint32_t packed_error) { in ERR_reason_error_string() 514 char *ERR_error_string(uint32_t packed_error, char *ret) { in ERR_error_string() 531 char *ERR_error_string_n(uint32_t packed_error, char *buf, size_t len) { in ERR_error_string_n() 594 uint32_t packed_error; in ERR_print_errors_cb() local
|
D | err_test.cc | 65 uint32_t packed_error = ERR_get_error_line_data(&file, &line, &data, &flags); in TEST() local 105 uint32_t packed_error = ERR_get_error(); in TEST() local 164 uint32_t packed_error = ERR_get_error_line_data(&file, &line, &data, &flags); in TEST() local
|
/external/rust/crates/quiche/deps/boringssl/src/crypto/err/ |
D | err_test.cc | 65 uint32_t packed_error = ERR_get_error_line_data(&file, &line, &data, &flags); in TEST() local 94 uint32_t packed_error = ERR_get_error(); in TEST() local 153 uint32_t packed_error = ERR_get_error_line_data(&file, &line, &data, &flags); in TEST() local
|
D | err.c | 371 char *ERR_error_string(uint32_t packed_error, char *ret) { in ERR_error_string() 388 char *ERR_error_string_n(uint32_t packed_error, char *buf, size_t len) { in ERR_error_string_n() 533 const char *ERR_lib_error_string(uint32_t packed_error) { in ERR_lib_error_string() 542 const char *ERR_func_error_string(uint32_t packed_error) { in ERR_func_error_string() 546 const char *ERR_reason_error_string(uint32_t packed_error) { in ERR_reason_error_string() 587 uint32_t packed_error; in ERR_print_errors_cb() local
|
/external/rust/crates/quiche/deps/boringssl/src/include/openssl/ |
D | err.h | 166 #define ERR_GET_LIB(packed_error) ((int)(((packed_error) >> 24) & 0xff)) argument 171 #define ERR_GET_REASON(packed_error) ((int)((packed_error) & 0xfff)) argument 408 #define ERR_GET_FUNC(packed_error) 0 argument
|
/external/boringssl/src/include/openssl/ |
D | err.h | 166 #define ERR_GET_LIB(packed_error) ((int)(((packed_error) >> 24) & 0xff)) argument 171 #define ERR_GET_REASON(packed_error) ((int)((packed_error) & 0xfff)) argument 414 #define ERR_GET_FUNC(packed_error) 0 argument
|
/external/openscreen/util/crypto/ |
D | openssl_util.cc | 76 while (uint32_t packed_error = ERR_get_error()) { in GetSSLError() local
|