Searched refs:packed_error (Results 1 - 5 of 5) sorted by relevance

/external/chromium_org/third_party/boringssl/src/crypto/err/
H A Derr_test.c45 uint32_t packed_error; local
58 packed_error = ERR_get_error_line_data(&file, &line, &data, &flags);
63 ERR_GET_LIB(packed_error) != 1 ||
64 ERR_GET_FUNC(packed_error) != 2 ||
65 ERR_GET_REASON(packed_error) != 3 ||
96 uint32_t packed_error; local
100 packed_error = ERR_get_error();
103 ERR_error_string_n(packed_error, buf, i);
H A Derr.c310 char *ERR_error_string(uint32_t packed_error, char *ret) { argument
324 ERR_error_string_n(packed_error, ret, ERR_ERROR_STRING_BUF_LEN);
329 void ERR_error_string_n(uint32_t packed_error, char *buf, size_t len) { argument
338 lib = ERR_GET_LIB(packed_error);
339 func = ERR_GET_FUNC(packed_error);
340 reason = ERR_GET_REASON(packed_error);
342 lib_str = ERR_lib_error_string(packed_error);
343 func_str = ERR_func_error_string(packed_error);
344 reason_str = ERR_reason_error_string(packed_error);
362 packed_error, lib_st
398 err_component_error_string(uint32_t packed_error) argument
410 ERR_lib_error_string(uint32_t packed_error) argument
414 ERR_func_error_string(uint32_t packed_error) argument
419 ERR_reason_error_string(uint32_t packed_error) argument
439 uint32_t packed_error; local
[all...]
H A Derr_impl.c154 * equals |packed_error|, or NULL if none can be found. */
155 static ERR_STRING_DATA *err_get_item(uint32_t packed_error) { argument
158 pattern.error = packed_error;
186 * |packed_error| and returns the removed entry, if any. */
187 static ERR_STRING_DATA *err_del_item(uint32_t packed_error) { argument
190 pattern.error = packed_error;
/external/chromium_org/third_party/boringssl/src/include/openssl/
H A Derr.h189 * |packed_error|, places it at |buf| (which must be at least
203 OPENSSL_EXPORT char *ERR_error_string(uint32_t packed_error, char *buf);
210 OPENSSL_EXPORT void ERR_error_string_n(uint32_t packed_error, char *buf,
214 * generated |packed_error|. */
215 OPENSSL_EXPORT const char *ERR_lib_error_string(uint32_t packed_error);
218 * generated |packed_error|. */
219 OPENSSL_EXPORT const char *ERR_func_error_string(uint32_t packed_error);
222 * |packed_error|. */
223 OPENSSL_EXPORT const char *ERR_reason_error_string(uint32_t packed_error);
463 #define ERR_GET_LIB(packed_error) (((packed_erro
[all...]
/external/chromium_org/net/quic/crypto/
H A Dquic_crypto_client_config.cc665 uint32 packed_error = 0; local
673 packed_error |= 1 << (reason - 1);
675 DVLOG(1) << "Reasons for rejection: " << packed_error;
678 packed_error);
681 packed_error);

Completed in 140 milliseconds