Searched defs:packed_error (Results 1 - 2 of 2) sorted by relevance

/external/boringssl/src/crypto/err/
H A Derr_test.cc61 uint32_t packed_error = ERR_get_error_line_data(&file, &line, &data, &flags); local
63 if (peeked_packed_error != packed_error ||
74 ERR_GET_LIB(packed_error) != 1 ||
75 ERR_GET_FUNC(packed_error) != 2 ||
76 ERR_GET_REASON(packed_error) != 3 ||
105 uint32_t packed_error = ERR_get_error(); local
109 ERR_error_string_n(packed_error, buf, i);
H A Derr.c344 char *ERR_error_string(uint32_t packed_error, char *ret) { argument
358 ERR_error_string_n(packed_error, ret, ERR_ERROR_STRING_BUF_LEN);
363 void ERR_error_string_n(uint32_t packed_error, char *buf, size_t len) { argument
372 lib = ERR_GET_LIB(packed_error);
373 func = ERR_GET_FUNC(packed_error);
374 reason = ERR_GET_REASON(packed_error);
376 lib_str = ERR_lib_error_string(packed_error);
377 func_str = ERR_func_error_string(packed_error);
378 reason_str = ERR_reason_error_string(packed_error);
396 packed_error, lib_st
512 ERR_lib_error_string(uint32_t packed_error) argument
521 ERR_func_error_string(uint32_t packed_error) argument
554 ERR_reason_error_string(uint32_t packed_error) argument
595 uint32_t packed_error; local
[all...]

Completed in 69 milliseconds