Searched refs:packed_error (Results 1 – 2 of 2) sorted by relevance
166 #define ERR_GET_LIB(packed_error) ((int)(((packed_error) >> 24) & 0xff)) argument171 #define ERR_GET_REASON(packed_error) ((int)((packed_error) & 0xfff)) argument222 OPENSSL_EXPORT void ERR_error_string_n(uint32_t packed_error, char *buf,227 OPENSSL_EXPORT const char *ERR_lib_error_string(uint32_t packed_error);231 OPENSSL_EXPORT const char *ERR_reason_error_string(uint32_t packed_error);389 OPENSSL_EXPORT const char *ERR_func_error_string(uint32_t packed_error);400 OPENSSL_EXPORT char *ERR_error_string(uint32_t packed_error, char *buf);404 #define ERR_GET_FUNC(packed_error) 0 argument
399 lib = ERR_GET_LIB(packed_error); in ERR_error_string_n()400 reason = ERR_GET_REASON(packed_error); in ERR_error_string_n()402 lib_str = ERR_lib_error_string(packed_error); in ERR_error_string_n()403 reason_str = ERR_reason_error_string(packed_error); in ERR_error_string_n()416 packed_error, lib_str, reason_str); in ERR_error_string_n()533 const uint32_t lib = ERR_GET_LIB(packed_error); in ERR_lib_error_string()546 const uint32_t lib = ERR_GET_LIB(packed_error); in ERR_reason_error_string()547 const uint32_t reason = ERR_GET_REASON(packed_error); in ERR_reason_error_string()586 uint32_t packed_error; in ERR_print_errors_cb() local594 if (packed_error == 0) { in ERR_print_errors_cb()[all …]
Completed in 5 milliseconds