Lines Matching refs:packed_error
67 OPENSSL_INLINE int ERR_GET_LIB(uint32_t packed_error) { in ERR_GET_LIB() argument
68 return (int)((packed_error >> 24) & 0xff); in ERR_GET_LIB()
74 OPENSSL_INLINE int ERR_GET_REASON(uint32_t packed_error) { in ERR_GET_REASON() argument
75 return (int)(packed_error & 0xfff); in ERR_GET_REASON()
136 OPENSSL_EXPORT char *ERR_error_string_n(uint32_t packed_error, char *buf,
142 OPENSSL_EXPORT const char *ERR_lib_error_string(uint32_t packed_error);
146 OPENSSL_EXPORT const char *ERR_reason_error_string(uint32_t packed_error);
151 OPENSSL_EXPORT const char *ERR_lib_symbol_name(uint32_t packed_error);
159 OPENSSL_EXPORT const char *ERR_reason_symbol_name(uint32_t packed_error);
319 OPENSSL_EXPORT const char *ERR_func_error_string(uint32_t packed_error);
332 OPENSSL_EXPORT char *ERR_error_string(uint32_t packed_error, char *buf);
336 OPENSSL_INLINE int ERR_GET_FUNC(uint32_t packed_error) { in ERR_GET_FUNC() argument
337 (void)packed_error; in ERR_GET_FUNC()