Lines Matching refs:packed_error
382 static const char *err_lib_error_string(uint32_t packed_error) { in err_lib_error_string() argument
383 const uint32_t lib = ERR_GET_LIB(packed_error); in err_lib_error_string()
387 const char *ERR_lib_error_string(uint32_t packed_error) { in ERR_lib_error_string() argument
388 const char *ret = err_lib_error_string(packed_error); in ERR_lib_error_string()
392 const char *ERR_lib_symbol_name(uint32_t packed_error) { in ERR_lib_symbol_name() argument
393 const uint32_t lib = ERR_GET_LIB(packed_error); in ERR_lib_symbol_name()
397 const char *ERR_func_error_string(uint32_t packed_error) { in ERR_func_error_string() argument
401 static const char *err_reason_error_string(uint32_t packed_error, int symbol) { in err_reason_error_string() argument
402 const uint32_t lib = ERR_GET_LIB(packed_error); in err_reason_error_string()
403 const uint32_t reason = ERR_GET_REASON(packed_error); in err_reason_error_string()
444 const char *ERR_reason_error_string(uint32_t packed_error) { in ERR_reason_error_string() argument
445 const char *ret = err_reason_error_string(packed_error, /*symbol=*/0); in ERR_reason_error_string()
449 const char *ERR_reason_symbol_name(uint32_t packed_error) { in ERR_reason_symbol_name() argument
450 return err_reason_error_string(packed_error, /*symbol=*/1); in ERR_reason_symbol_name()
453 char *ERR_error_string(uint32_t packed_error, char *ret) { in ERR_error_string() argument
467 return ERR_error_string_n(packed_error, ret, ERR_ERROR_STRING_BUF_LEN); in ERR_error_string()
470 char *ERR_error_string_n(uint32_t packed_error, char *buf, size_t len) { in ERR_error_string_n() argument
475 unsigned lib = ERR_GET_LIB(packed_error); in ERR_error_string_n()
476 unsigned reason = ERR_GET_REASON(packed_error); in ERR_error_string_n()
478 const char *lib_str = err_lib_error_string(packed_error); in ERR_error_string_n()
479 const char *reason_str = err_reason_error_string(packed_error, /*symbol=*/0); in ERR_error_string_n()
493 packed_error, lib_str, reason_str); in ERR_error_string_n()
532 uint32_t packed_error; in ERR_print_errors_cb() local
539 packed_error = ERR_get_error_line_data(&file, &line, &data, &flags); in ERR_print_errors_cb()
540 if (packed_error == 0) { in ERR_print_errors_cb()
544 ERR_error_string_n(packed_error, buf, sizeof(buf)); in ERR_print_errors_cb()