Home | History | Annotate | Download | only in openssl

Lines Matching refs:packed_error

196  * |packed_error|, places it at |buf| (which must be at least
210 OPENSSL_EXPORT char *ERR_error_string(uint32_t packed_error, char *buf);
217 OPENSSL_EXPORT void ERR_error_string_n(uint32_t packed_error, char *buf,
221 * generated |packed_error|. */
222 OPENSSL_EXPORT const char *ERR_lib_error_string(uint32_t packed_error);
225 * |packed_error|. */
226 OPENSSL_EXPORT const char *ERR_reason_error_string(uint32_t packed_error);
289 OPENSSL_EXPORT const char *ERR_func_error_string(uint32_t packed_error);
471 #define ERR_GET_LIB(packed_error) ((int)(((packed_error) >> 24) & 0xff))
472 #define ERR_GET_FUNC(packed_error) 0
473 #define ERR_GET_REASON(packed_error) ((int)((packed_error) & 0xfff))