Home
last modified time | relevance | path

Searched defs:packed_error (Results 1 – 3 of 3) sorted by relevance

/external/boringssl/src/crypto/err/
Derr_test.cc61 uint32_t packed_error = ERR_get_error_line_data(&file, &line, &data, &flags); in TestPutError() local
104 uint32_t packed_error = ERR_get_error(); in TestPrint() local
Derr.c341 char *ERR_error_string(uint32_t packed_error, char *ret) { in ERR_error_string()
360 void ERR_error_string_n(uint32_t packed_error, char *buf, size_t len) { in ERR_error_string_n()
502 const char *ERR_lib_error_string(uint32_t packed_error) { in ERR_lib_error_string()
511 const char *ERR_func_error_string(uint32_t packed_error) { in ERR_func_error_string()
515 const char *ERR_reason_error_string(uint32_t packed_error) { in ERR_reason_error_string()
556 uint32_t packed_error; in ERR_print_errors_cb() local
/external/boringssl/src/include/openssl/
Derr.h471 #define ERR_GET_LIB(packed_error) ((int)(((packed_error) >> 24) & 0xff)) argument
472 #define ERR_GET_FUNC(packed_error) 0 argument
473 #define ERR_GET_REASON(packed_error) ((int)((packed_error) & 0xfff)) argument