HomeSort by relevance Sort by last modified time
    Searched defs:packed_error (Results 1 - 2 of 2) sorted by null

  /external/boringssl/src/crypto/err/
err_test.cc 55 uint32_t packed_error = ERR_get_error_line_data(&file, &line, &data, &flags); local
57 EXPECT_EQ(peeked_packed_error, packed_error);
65 EXPECT_EQ(1, ERR_GET_LIB(packed_error));
66 EXPECT_EQ(2, ERR_GET_REASON(packed_error));
84 uint32_t packed_error = ERR_get_error(); local
88 ERR_error_string_n(packed_error, buf, i);
err.c 341 char *ERR_error_string(uint32_t packed_error, char *ret) {
355 ERR_error_string_n(packed_error, ret, ERR_ERROR_STRING_BUF_LEN);
360 void ERR_error_string_n(uint32_t packed_error, char *buf, size_t len) {
369 lib = ERR_GET_LIB(packed_error);
370 reason = ERR_GET_REASON(packed_error);
372 lib_str = ERR_lib_error_string(packed_error);
373 reason_str = ERR_reason_error_string(packed_error);
386 packed_error, lib_str, reason_str);
502 const char *ERR_lib_error_string(uint32_t packed_error) {
503 const uint32_t lib = ERR_GET_LIB(packed_error);
556 uint32_t packed_error; local
    [all...]

Completed in 829 milliseconds