Lines Matching refs:packed_error
344 char *ERR_error_string(uint32_t packed_error, char *ret) { in ERR_error_string() argument
358 ERR_error_string_n(packed_error, ret, ERR_ERROR_STRING_BUF_LEN); in ERR_error_string()
363 void ERR_error_string_n(uint32_t packed_error, char *buf, size_t len) { in ERR_error_string_n() argument
372 lib = ERR_GET_LIB(packed_error); in ERR_error_string_n()
373 func = ERR_GET_FUNC(packed_error); in ERR_error_string_n()
374 reason = ERR_GET_REASON(packed_error); in ERR_error_string_n()
376 lib_str = ERR_lib_error_string(packed_error); in ERR_error_string_n()
377 func_str = ERR_func_error_string(packed_error); in ERR_error_string_n()
378 reason_str = ERR_reason_error_string(packed_error); in ERR_error_string_n()
396 packed_error, lib_str, func_str, reason_str); in ERR_error_string_n()
512 const char *ERR_lib_error_string(uint32_t packed_error) { in ERR_lib_error_string() argument
513 const uint32_t lib = ERR_GET_LIB(packed_error); in ERR_lib_error_string()
521 const char *ERR_func_error_string(uint32_t packed_error) { in ERR_func_error_string() argument
522 const uint32_t lib = ERR_GET_LIB(packed_error); in ERR_func_error_string()
523 const uint32_t func = ERR_GET_FUNC(packed_error); in ERR_func_error_string()
548 return err_string_lookup(ERR_GET_LIB(packed_error), in ERR_func_error_string()
549 ERR_GET_FUNC(packed_error), kOpenSSLFunctionValues, in ERR_func_error_string()
554 const char *ERR_reason_error_string(uint32_t packed_error) { in ERR_reason_error_string() argument
555 const uint32_t lib = ERR_GET_LIB(packed_error); in ERR_reason_error_string()
556 const uint32_t reason = ERR_GET_REASON(packed_error); in ERR_reason_error_string()
595 uint32_t packed_error; in ERR_print_errors_cb() local
602 packed_error = ERR_get_error_line_data(&file, &line, &data, &flags); in ERR_print_errors_cb()
603 if (packed_error == 0) { in ERR_print_errors_cb()
607 ERR_error_string_n(packed_error, buf, sizeof(buf)); in ERR_print_errors_cb()