Home
last modified time | relevance | path

Searched full:error (Results 1 – 25 of 5735) sorted by relevance

12345678910>>...230

/openbmc/phosphor-power/org/open_power/Witherspoon/
H A DFault.errors.yaml31 description: CPLD's error reason is PSU0_PGOOD fail
34 description: CPLD's error reason is PSU1_PGOOD fail
37 description: CPLD's error reason is 240Va_Fault_A fail
40 description: CPLD's error reason is 240Va_Fault_B fail
43 description: CPLD's error reason is 240Va_Fault_C fail
46 description: CPLD's error reason is 240Va_Fault_D fail
49 description: CPLD's error reason is 240Va_Fault_E fail
52 description: CPLD's error reason is 240Va_Fault_F fail
55 description: CPLD's error reason is 240Va_Fault_G fail
58 description: CPLD's error reason is 240Va_Fault_H fail
[all …]
/openbmc/u-boot/drivers/crypto/fsl/
H A Derror.c3 * CAAM Error Reporting
7 * Derived from error.c file in linux drivers/crypto/caam
33 { 0x00, "No error." },
34 { 0x01, "SGT Length Error. The descriptor is trying to read" \
36 { 0x02, "SGT Null Entry Error." },
37 { 0x03, "Job Ring Control Error. Bad value in Job Ring Control reg." },
52 { 0x12, "Shared Descriptor Header Error" },
53 { 0x13, "Header Error. Invalid length or parity, or other problems." },
54 { 0x14, "Burster Error. Burster has gotten to an illegal state" },
55 { 0x15, "Context Register Length Error" },
[all …]
/openbmc/qemu/rust/qemu-api/src/
H A Derror.rs3 //! Error propagation for QEMU Rust code
5 //! This module contains [`Error`], the bridge between Rust errors and
6 //! [`Result`](std::result::Result)s and QEMU's C [`Error`](bindings::Error)
9 //! For FFI code, [`Error`] provides functions to simplify conversion between
10 //! the Rust ([`Result<>`](std::result::Result)) and C (`Error**`) conventions:
12 //! * [`ok_or_propagate`](crate::Error::ok_or_propagate),
13 //! [`bool_or_propagate`](crate::Error::bool_or_propagate),
14 //! [`ptr_or_propagate`](crate::Error::ptr_or_propagate) can be used to build
15 //! a C return value while also propagating an error condition
17 //! * [`err_or_else`](crate::Error::err_or_else) and
[all …]
/openbmc/qemu/tests/qemu-iotests/
H A D251.out6 qemu-img: warning: error while reading block status at offset status_fail_offset_0: Input/output er…
7 qemu-img: warning: error while reading block status at offset status_fail_offset_1: Input/output er…
8 qemu-img: warning: error while reading block status at offset status_fail_offset_0: Input/output er…
9 qemu-img: warning: error while reading offset read_fail_offset_0: Input/output error
10 qemu-img: warning: error while reading block status at offset status_fail_offset_1: Input/output er…
11 qemu-img: warning: error while reading offset status_fail_offset_1: Input/output error
12 qemu-img: warning: error while reading offset read_fail_offset_2: Input/output error
13 qemu-img: warning: error while reading offset read_fail_offset_3: Input/output error
14 qemu-img: warning: error while reading offset read_fail_offset_4: Input/output error
15 qemu-img: warning: error while reading offset read_fail_offset_5: Input/output error
[all …]
/openbmc/phosphor-power/power-sequencer/
H A Dmihawk-cpld.hpp44 * known to be in an error state. A log will be created.
63 * to read CPLD-error-code-register
73 * @return int - the error-code value which is read on
74 * CPLD-error-code-register.
80 * CPLD-power_on-error-interrupt-bit-register
94 * CPLD-power_ready-error-interrupt-bit-register
117 * The parameter which is checked CPLD's the same error
125 * All of powerOnErrorcode are the definition of error-code
126 * which are read on CPLD-error-code-register.
129 * The definition of error-code:
[all …]
/openbmc/qemu/include/qapi/
H A Derror.h2 * QEMU Error Objects
16 * Error reporting system loosely patterned after Glib's GError.
20 * - Functions that use Error to report errors have an Error **errp
24 * - You may pass NULL to not receive the error, &error_abort to abort
25 * on error, &error_fatal to exit(1) on error, or a pointer to a
26 * variable containing NULL to receive the error.
29 * errors and failing cleanly; handling the error is its caller's
30 * job. Since the value of @errp is about handling the error, the
38 * should set a new error, e.g. with error_setg(errp, ...), or
42 * failure. This can make the error checking more concise, and can
[all …]
/openbmc/libcper/specification/document/
H A Dcper-json-specification.tex92 severity & object & An error severity structure as described in \ref{subsection:headererrorseverity…
104 …ptional}) & If validation bit is set, GUID identifying the partition on which the error occurred.\\
106 creatorID & string & A GUID identifying the creator of the error record. May be overwritten by subs…
110 …when combined with the \texttt{creatorID} field, uniquely identifies this error record on a given …
114 persistenceInfo & uint64 & Produced and consumed by the creator of the error record identified by \…
117 % Header error severity.
118 \subsection{Header Error Severity Structure}
120 This structure describes the error severity of a single CPER record.
122 name & string & The human readable name of this error severity, if known. \\
124 code & uint64 & The integer value of this error severity. \\
[all …]
/openbmc/openpower-occ-control/
H A Docc_errors.hpp19 "org.open_power.OCC.Firmware.Error.PresenceMismatch";
20 constexpr auto SAFE_ERROR_PATH = "org.open_power.OCC.Device.Error.SafeState";
22 "org.open_power.OCC.Firmware.Error.MissingOCCSensors";
24 "org.open_power.OCC.Device.Error.OpenFailure";
26 /** @class Error
27 * @brief Monitors for OCC device error condition
29 class Error class
32 Error() = delete;
33 Error(const Error&) = delete;
34 Error& operator=(const Error&) = delete;
[all …]
H A Docc_device.cpp26 lg2::error("Failed to set {DEVICE} active: {ERROR}", "DEVICE", devPath, in setActive()
27 "ERROR", e.what()); in setActive()
79 void Device::errorCallback(int error) in errorCallback() argument
81 if (error) in errorCallback()
83 if (error != -EHOSTDOWN) in errorCallback()
91 Error::Descriptor("org.open_power.OCC.Device.Error.ReadFailure", in errorCallback()
92 error, p.c_str())); in errorCallback()
96 statusObject.deviceError(Error::Descriptor(SAFE_ERROR_PATH)); in errorCallback()
103 statusObject.deviceError(Error::Descriptor(PRESENCE_ERROR_PATH)); in presenceCallback()
106 void Device::timeoutCallback(int error) in timeoutCallback() argument
[all …]
/openbmc/phosphor-dbus-interfaces/yaml/com/google/gbmc/
H A DHoth.interface.yaml22 - self.Error.CommandFailure
23 - self.Error.ResponseFailure
24 - self.Error.InterfaceError
25 - xyz.openbmc_project.Common.Error.Timeout
44 - self.Error.CommandFailure
45 - self.Error.ResponseFailure
46 - self.Error.InterfaceError
47 - xyz.openbmc_project.Common.Error.Timeout
65 - self.Error.CommandFailure
81 - self.Error.ResponseFailure
[all …]
/openbmc/pldm/platform-mc/
H A Dplatform_manager.cpp35 lg2::error( in initTerminus()
36 "Failed to get FRU Metadata for terminus {TID}, error {ERROR}", in initTerminus()
37 "TID", tid, "ERROR", rc); in initTerminus()
53 lg2::error( in initTerminus()
54 "Failed to get Fru Record table for terminus {TID}, error {ERROR}", in initTerminus()
55 "TID", tid, "ERROR", rc); in initTerminus()
64 lg2::error( in initTerminus()
65 "Failed to fetch PDRs for terminus with TID: {TID}, error: {ERROR}", in initTerminus()
66 "TID", tid, "ERROR", rc); in initTerminus()
95 lg2::error( in initTerminus()
[all …]
/openbmc/u-boot/drivers/sound/
H A Dmax98090.c26 * @return -EIO for error, 0 for success.
31 int error; in max98090_hw_params() local
37 error = maxim_bic_or(priv, M98090_REG_INTERFACE_FORMAT, in max98090_hw_params()
49 error |= maxim_bic_or(priv, M98090_REG_FILTER_CONFIG, in max98090_hw_params()
52 error |= maxim_bic_or(priv, M98090_REG_FILTER_CONFIG, in max98090_hw_params()
57 error |= maxim_bic_or(priv, M98090_REG_FILTER_CONFIG, in max98090_hw_params()
60 error |= maxim_bic_or(priv, M98090_REG_FILTER_CONFIG, in max98090_hw_params()
63 if (error < 0) { in max98090_hw_params()
64 debug("%s: Error setting hardware params.\n", __func__); in max98090_hw_params()
78 * @return -EIO for error, 0 for success.
[all …]
H A Dmax98088.c32 * @return 0 for success or negative error code.
56 * @return -EIO for error, 0 for success.
61 int error; in max98088_hw_params() local
66 error = maxim_bic_or(priv, M98088_REG_DAI1_FORMAT, in max98088_hw_params()
70 error = maxim_bic_or(priv, M98088_REG_DAI1_FORMAT, in max98088_hw_params()
79 error |= maxim_bic_or(priv, M98088_REG_PWR_SYS, M98088_SHDNRUN, 0); in max98088_hw_params()
87 error |= maxim_bic_or(priv, M98088_REG_DAI1_CLKMODE, in max98088_hw_params()
93 error |= maxim_bic_or(priv, M98088_REG_DAI1_FILTERS, in max98088_hw_params()
96 error |= maxim_bic_or(priv, M98088_REG_DAI1_FILTERS, in max98088_hw_params()
99 error |= maxim_bic_or(priv, M98088_REG_PWR_SYS, M98088_SHDNRUN, in max98088_hw_params()
[all …]
/openbmc/phosphor-logging/tools/
H A Delog-gen.py4 This script will parse error log yaml file(s) and generate
5 a header file which will then be used by the error logging client and
6 server to collect and validate the error information generated by the
27 for error in i_errors:
28 if i_parents[error] is not None:
33 # Order the error codes list such that an error is never placed
35 # definitions precede child error definitions.
37 for error in i_errors:
38 if error in errors:
41 if (not i_parents[error]) or (i_parents[error] in errors):
[all …]
/openbmc/qemu/tests/unit/
H A Dtest-error-report.c2 * Error reporting test
14 #include "qemu/error-report.h"
15 #include "qapi/error.h"
21 error_report("%s", "test error"); in test_error_report_simple()
30 test-error-report: test error*\ in test_error_report_simple()
31 test-error-report: warning: test warn*\ in test_error_report_simple()
32 test-error-report: info: test info*\ in test_error_report_simple()
50 test-error-report:some-file.c:7717: test error1*\ in test_error_report_loc()
51 test-error-report: test error2*\ in test_error_report_loc()
65 g_test_trap_assert_stderr("test-error-report: info: gmessage*"); in test_error_report_glog()
[all …]
/openbmc/phosphor-dbus-interfaces/yaml/xyz/openbmc_project/User/
H A DManager.interface.yaml10 error.
29 - xyz.openbmc_project.Common.Error.InternalFailure
30 - xyz.openbmc_project.Common.Error.InsufficientPermission
31 - xyz.openbmc_project.Common.Error.InvalidArgument
32 - xyz.openbmc_project.User.Common.Error.UserNameExists
33 - xyz.openbmc_project.User.Common.Error.UserNameGroupFail
34 - xyz.openbmc_project.User.Common.Error.UserNamePrivFail
35 - xyz.openbmc_project.User.Common.Error.NoResource
51 - xyz.openbmc_project.Common.Error.InternalFailure
52 - xyz.openbmc_project.Common.Error.InsufficientPermission
[all …]
/openbmc/qemu/include/block/
H A Dblock-global-state.h57 Error **errp);
62 Error **errp);
65 QemuOpts *opts, Error **errp);
68 bdrv_co_create_file(const char *filename, QemuOpts *opts, Error **errp);
72 Error **errp);
75 bdrv_replace_node(BlockDriverState *from, BlockDriverState *to, Error **errp);
78 bdrv_replace_child_bs(BdrvChild *child, BlockDriverState *new_bs, Error **errp);
81 Error **errp);
82 int bdrv_drop_filter(BlockDriverState *bs, Error **errp);
87 BdrvChildRole child_role, bool allow_none, Error **errp);
[all …]
/openbmc/phosphor-certificate-manager/
H A Dx509_utils.cpp16 #include <xyz/openbmc_project/Certs/error.hpp>
17 #include <xyz/openbmc_project/Common/error.hpp>
31 using ::sdbusplus::xyz::openbmc_project::Certs::Error::InvalidCertificate;
32 using ::sdbusplus::xyz::openbmc_project::Common::Error::InternalFailure;
46 constexpr bool isTrustChainError(int error) in isTrustChainError() argument
48 return error == X509_V_ERR_DEPTH_ZERO_SELF_SIGNED_CERT || in isTrustChainError()
49 error == X509_V_ERR_SELF_SIGNED_CERT_IN_CHAIN || in isTrustChainError()
50 error == X509_V_ERR_UNABLE_TO_GET_ISSUER_CERT_LOCALLY || in isTrustChainError()
51 error == X509_V_ERR_UNABLE_TO_GET_ISSUER_CERT || in isTrustChainError()
52 error == X509_V_ERR_CERT_UNTRUSTED || in isTrustChainError()
[all …]
/openbmc/ibm-logging/
H A Dcondense_policy.py3 """Condenses the error policy table down to only the fields used by
9 Error: The OpenBMC error.
10 e.g. xyz.openbmc_project.Thermal.Error.PowerSupplyHot
13 Modifier: Used in combination with the error to locate a
16 Message: A short message describing the error.
19 There may be multiple CommonEventID/Modifier/Message groups per Error,
20 which is why both the error and modifier are needed to find an entry.
36 "err":"xyz.openbmc_project.Thermal.Error.PowerSupplyHot"
44 def add_details(error, details, condensed): argument
45 """Adds a details entry to an error"""
[all …]
/openbmc/pldm/oem/ibm/libpldmresponder/
H A Dfile_io_type_pel.cpp4 #include "xyz/openbmc_project/Common/error.hpp"
48 {0x10, Entry::Level::Warning}, // Recoverable error in getEntryLevelFromPEL()
49 {0x20, Entry::Level::Warning}, // Predictive error in getEntryLevelFromPEL()
50 {0x40, Entry::Level::Error}, // Unrecoverable error in getEntryLevelFromPEL()
51 {0x50, Entry::Level::Error}, // Critical error in getEntryLevelFromPEL()
52 {0x60, Entry::Level::Error}, // Error from a diagnostic test in getEntryLevelFromPEL()
85 error("Unable to open PEL file '{FILE}'", "FILE", pelFileName); in getEntryLevelFromPEL()
89 return Entry::Level::Error; in getEntryLevelFromPEL()
117 error( in readIntoMemory()
118 "Failed to get PEL D-Bus call for PEL ID '{FILE_HANDLE}', error - {ERROR}", in readIntoMemory()
[all …]
/openbmc/openbmc-test-automation/data/
H A Dpel_variables.py11 "Message": "This is a test error",
13 "Sev": "Unrecoverable Error",
23 + "xyz.openbmc_project.Common.Error.InternalFailure "
24 " xyz.openbmc_project.Logging.Entry.Level.Error 0"
29 + "xyz.openbmc_project.Sensor.Device.Error.ReadFailure "
30 ' xyz.openbmc_project.Logging.Entry.Level.Error 2 "TIMEOUT_IN_MSEC" "5"'
36 ERROR_LOG_CREATE_BASE_CMD + "org.open_power.Logging.Error.TestError1 "
37 " xyz.openbmc_project.Logging.Entry.Level.Error 0"
42 + "xyz.openbmc_project.Common.Error.TestError2 "
52 ERROR_LOG_CREATE_BASE_CMD + "org.open_power.Logging.Error.TestError1 "
[all …]
/openbmc/u-boot/doc/
H A DREADME.mpc83xx.ddrecc37 1. Set 1 bit in Data Path Error Inject Mask
49 Memory Data Path Error Injection Mask High/Low: 00000001 00000000
51 Memory Single-Bit Error Management (0..255):
52 Single-Bit Error Threshold: 255
53 Single Bit Error Counter: 16
55 Memory Error Detect:
57 Multiple-Bit Error: 0
58 Single-Bit Error: 0
61 16 errors were generated, Single-Bit Error flag was not set as Single Bit Error
62 Counter did not reach Single-Bit Error Threshold.
[all …]
/openbmc/openbmc/meta-openembedded/meta-oe/recipes-devtools/libgee/
H A Dlibgee_0.20.8.bb26 # libgee-0.20.6/gee/concurrentlist.c:1169:177: error: passing argument 4 of 'gee_hazard_pointer_get…
27 # libgee-0.20.6/gee/concurrentlist.c:1175:168: error: passing argument 4 of 'gee_hazard_pointer_set…
28 # libgee-0.20.6/gee/concurrentlist.c:2385:194: error: passing argument 4 of 'gee_hazard_pointer_com…
29 # libgee-0.20.6/gee/concurrentlist.c:2438:177: error: passing argument 4 of 'gee_hazard_pointer_get…
30 # libgee-0.20.6/gee/concurrentlist.c:2460:168: error: passing argument 4 of 'gee_hazard_pointer_set…
31 # libgee-0.20.6/gee/concurrentlist.c:2469:177: error: passing argument 4 of 'gee_hazard_pointer_get…
32 # libgee-0.20.6/gee/concurrentlist.c:2481:185: error: passing argument 4 of 'gee_hazard_pointer_com…
33 # libgee-0.20.6/gee/concurrentlist.c:2640:168: error: passing argument 4 of 'gee_hazard_pointer_set…
34 # libgee-0.20.6/gee/concurrentlist.c:2641:168: error: passing argument 4 of 'gee_hazard_pointer_set…
35 # libgee-0.20.6/gee/concurrentlist.c:2750:168: error: passing argument 4 of 'gee_hazard_pointer_set…
[all …]
/openbmc/phosphor-buttons/src/
H A Dgpio.cpp20 #include <error.h>
53 lg2::error("GPIO write error {GPIOFD} : {ERRORNO}", "GPIOFD", fd, in setGpioState()
67 lg2::error("GPIO lseek error {GPIOFD}: {ERROR}", "GPIOFD", fd, "ERROR", in getGpioState()
75 lg2::error("GPIO read error {GPIOFD}: {ERRORNO}", "GPIOFD", fd, in getGpioState()
113 lg2::error("Could not find GPIO base"); in getGpioBase()
139 lg2::error("{NAME}: Error configuring gpio-{NUM}: {RESULT}", "NAME", in configGroupGpio()
182 lg2::error("{NUM} error in writing {PATH}: {ERROR}", "NUM", gpioNum, in configGpio()
183 "PATH", devPath, "ERROR", e); in configGpio()
203 lg2::error("Error in reading {PATH}: {ERROR}", "PATH", devPath, in configGpio()
204 "ERROR", e); in configGpio()
[all …]
/openbmc/qemu/util/
H A Derror.c2 * QEMU Error Objects
16 #include "qapi/error.h"
17 #include "qemu/error-report.h"
18 #include "qapi/error-internal.h"
20 Error *error_abort;
21 Error *error_fatal;
22 Error *error_warn;
24 static void error_handle(Error **errp, Error *err) in error_handle()
28 fprintf(stderr, "Unexpected error in %s() at %.*s:%d:\n", in error_handle()
31 fprintf(stderr, "Unexpected error at %.*s:%d:\n", in error_handle()
[all …]

12345678910>>...230