Searched refs:error_type (Results 1 - 24 of 24) sorted by relevance

/freebsd-current/sys/dev/qat/qat_common/
H A Dadf_freebsd_cnvnr_ctrs_dbg.c43 u8 num_aes = 0, ae = 0, error_type = 0, bytes_written = 0; local
103 error_type = CNV_ERROR_TYPE_GET(response.latest_error);
104 if (error_type == CNV_ERR_TYPE_DECOMP_PRODUCED_LENGTH_ERROR ||
105 error_type == CNV_ERR_TYPE_DECOMP_CONSUMED_LENGTH_ERROR) {
108 } else if (error_type == CNV_ERR_TYPE_DECOMPRESSION_ERROR ||
109 error_type == CNV_ERR_TYPE_TRANSLATION_ERROR) {
123 cnvnr_err_str[error_type],
/freebsd-current/contrib/llvm-project/compiler-rt/lib/orc/
H A Derror.h191 using error_type = std::unique_ptr<ErrorInfoBase>;
204 new (getErrorStorage()) error_type(Err.takePayload());
248 getErrorStorage()->~error_type();
258 /// Returns true if this Expected value holds an Error of type error_type.
320 new (getErrorStorage()) error_type(std::move(*Other.getErrorStorage()));
351 error_type *getErrorStorage() {
353 return reinterpret_cast<error_type *>(&ErrorStorage);
356 const error_type *getErrorStorage() const {
358 return reinterpret_cast<const error_type *>(&ErrorStorage);
371 std::aligned_union_t<1, error_type> ErrorStorag
[all...]
/freebsd-current/contrib/llvm-project/compiler-rt/lib/sanitizer_common/
H A Dsanitizer_symbolizer_report.cpp54 void ReportErrorSummary(const char *error_type, const AddressInfo &info, argument
58 buff.AppendF("%s ", error_type);
96 void ReportErrorSummary(const char *error_type, const StackTrace *stack, argument
109 ReportErrorSummary(error_type, summary_frame->info, alt_tool_name);
121 ReportErrorSummary(error_type, frame->info, alt_tool_name);
127 ReportErrorSummary(error_type);
H A Dsanitizer_common.h391 // error_type file:line[:column][ function]
392 void ReportErrorSummary(const char *error_type, const AddressInfo &info,
395 void ReportErrorSummary(const char *error_type, const StackTrace *trace,
/freebsd-current/contrib/wpa/src/eap_peer/
H A Dikev2.h49 u16 error_type; member in struct:ikev2_responder_data
H A Dikev2.c387 data->error_type = INVALID_KE_PAYLOAD;
575 data->error_type = AUTHENTICATION_FAILED;
741 data->error_type = 0;
1029 if (data->error_type == 0) {
1041 wpabuf_put_be16(msg, data->error_type);
1043 switch (data->error_type) {
1059 "%d", data->error_type);
/freebsd-current/contrib/llvm-project/compiler-rt/lib/scudo/standalone/include/scudo/
H A Dinterface.h101 enum scudo_error_type error_type; member in struct:scudo_error_report
/freebsd-current/sys/dev/mlx5/mlx5_core/
H A Dmlx5_eq.c642 static const char *mlx5_port_module_event_error_type_to_string(u8 error_type) argument
644 switch (error_type) {
692 unsigned int error_type; local
700 error_type = (unsigned int)module_event_eqe->error_type &
721 mlx5_port_module_event_error_type_to_string(error_type),
722 error_type);
723 if (error_type < MLX5_MODULE_EVENT_ERROR_NUM)
724 dev->priv.pme_stats.error_counters[error_type]++;
/freebsd-current/contrib/llvm-project/llvm/include/llvm/Support/
H A DError.h482 using error_type = std::unique_ptr<ErrorInfoBase>;
504 new (getErrorStorage()) error_type(Err.takePayload());
559 getErrorStorage()->~error_type();
653 new (getErrorStorage()) error_type(std::move(*Other.getErrorStorage()));
684 error_type *getErrorStorage() {
686 return reinterpret_cast<error_type *>(&ErrorStorage);
689 const error_type *getErrorStorage() const {
691 return reinterpret_cast<const error_type *>(&ErrorStorage);
724 AlignedCharArrayUnion<error_type> ErrorStorage;
/freebsd-current/contrib/llvm-project/libcxx/src/
H A Dregex.cpp15 static const char* make_error_type_string(regex_constants::error_type ecode) {
60 regex_error::regex_error(regex_constants::error_type ecode)
/freebsd-current/contrib/llvm-project/libcxx/modules/std/
H A Dregex.inc14 using std::regex_constants::error_type;
/freebsd-current/sys/dev/pms/freebsd/driver/common/
H A Dencrypt_ioctl.h111 bit32 error_type; member in struct:IoctlEncryptIOError_s
H A Dlxencrypt.c1145 perr->ioerr.error_type = pccb->scsiStatus;
1149 perr->ioerr.error_type = 0xffffffff;
/freebsd-current/sys/contrib/dev/iwlwifi/fw/api/
H A Ddebug.h92 * @error_type: one of FW_ERR_*
97 * error_type = 2, otherwise 0
101 __le32 error_type; member in struct:iwl_error_resp
/freebsd-current/contrib/llvm-project/libcxx/include/__expected/
H A Dexpected.h473 using error_type = _Err;
477 using rebind = expected<_Up, error_type>;
829 static_assert(is_copy_constructible_v<_Err>, "error_type has to be copy constructible");
837 static_assert(is_copy_constructible_v<_Err>, "error_type has to be copy constructible");
846 "error_type has to be both copy constructible and constructible from decltype(std::move(error()))");
855 "error_type has to be both copy constructible and constructible from decltype(std::move(error()))");
902 static_assert(is_copy_constructible_v<_Err>, "error_type has to be copy constructible");
903 static_assert(is_convertible_v<_Up, _Err>, "argument has to be convertible to error_type");
911 static_assert(is_move_constructible_v<_Err>, "error_type has to be move constructible");
912 static_assert(is_convertible_v<_Up, _Err>, "argument has to be convertible to error_type");
[all...]
/freebsd-current/contrib/llvm-project/compiler-rt/lib/scudo/standalone/
H A Dcombined.h1376 R->error_type =
1455 R->error_type = USE_AFTER_FREE;
1457 R->error_type = BUFFER_UNDERFLOW;
1459 R->error_type = BUFFER_OVERFLOW;
/freebsd-current/contrib/wpa/src/common/
H A Dwpa_common.h316 be16 error_type; member in struct:rsn_error_kde
/freebsd-current/sys/contrib/dev/iwlwifi/mvm/
H A Dutils.c204 le32_to_cpu(err_resp->error_type), err_resp->cmd_id);
/freebsd-current/sys/dev/mlx5/
H A Ddevice.h606 u8 error_type; member in struct:mlx5_eqe_port_module_event
H A Dmlx5_ifc.h8868 u8 error_type[0x4]; member in struct:mlx5_ifc_pmpe_reg_bits
8917 u8 error_type[0x4]; member in struct:mlx5_ifc_pmaos_reg_bits
9341 u8 error_type[0x8]; member in struct:mlx5_ifc_peir_reg_bits
10412 u8 error_type[0x4]; member in struct:mlx5_ifc_port_module_event_bits
/freebsd-current/sys/dev/qlnx/qlnxe/
H A Decore_hsi_common.h185 u8 error_type; member in struct:core_rx_action_on_error
H A Decore_ll2.c886 p_ramrod->action_on_error.error_type = action_on_error;
/freebsd-current/sys/dev/iwm/
H A Dif_iwmreg.h2610 * @error_type: one of IWM_FW_ERR_*
2614 * error_type = 2, otherwise 0
2618 uint32_t error_type; member in struct:iwm_error_resp
H A Dif_iwm.c5505 le32toh(resp->error_type),

Completed in 389 milliseconds