| /openbmc/phosphor-power/phosphor-regulators/src/ |
| H A D | error_logging_utils.cpp | 58 ErrorType errorType{}; in logError() local 65 errorType = ErrorType::configFile; in logError() 66 if (!history.wasLogged(errorType)) in logError() 68 history.setWasLogged(errorType, true); in logError() 74 errorType = ErrorType::pmbus; in logError() 75 if (!history.wasLogged(errorType)) in logError() 77 history.setWasLogged(errorType, true); in logError() 83 errorType = ErrorType::writeVerification; in logError() 84 if (!history.wasLogged(errorType)) in logError() 86 history.setWasLogged(errorType, true); in logError() [all …]
|
| H A D | phase_fault.hpp | 65 ErrorType errorType{ErrorType::phaseFaultN}; in toErrorType() local 69 errorType = ErrorType::phaseFaultN; in toErrorType() 72 errorType = ErrorType::phaseFaultNPlus1; in toErrorType() 75 return errorType; in toErrorType()
|
| H A D | error_history.hpp | 79 void setWasLogged(ErrorType errorType, bool wasLogged) in setWasLogged() argument 82 history[static_cast<int>(errorType)] = wasLogged; in setWasLogged() 91 bool wasLogged(ErrorType errorType) const in wasLogged() 94 return history[static_cast<int>(errorType)]; in wasLogged()
|
| H A D | phase_fault_detection.cpp | 91 ErrorType errorType = toErrorType(faultType); in checkForPhaseFault() local 94 if (!errorHistory.wasLogged(errorType)) in checkForPhaseFault() 121 errorHistory.setWasLogged(errorType, true); in checkForPhaseFault()
|
| /openbmc/phosphor-debug-collector/ |
| H A D | dump_utils.hpp | 359 std::string errorType = extractParameter<std::string>( in getErrorDumpType() local 362 if (!isErrorTypeValid(errorType)) in getErrorDumpType() 365 "ERROR_TYPE", errorType); in getErrorDumpType() 367 Argument::ARGUMENT_VALUE(errorType.c_str())); in getErrorDumpType() 369 auto type = stringToDumpType(errorType); in getErrorDumpType()
|
| H A D | elog_watch.cpp | 118 auto errorType = etype.value(); in addCallback() local 132 CreateParameters::ErrorType)] = errorType; in addCallback()
|
| H A D | dump_types.cpp.mako | 110 bool isErrorTypeValid(const std::string& errorType) 112 const auto it = errorMap.find(errorType);
|
| H A D | dump_types.hpp.mako | 101 * @param[in] errorType - The string representation of the error type to 106 bool isErrorTypeValid(const std::string& errorType);
|
| /openbmc/pldm/oem/meta/event/ |
| H A D | oem_event_manager.cpp | 177 uint8_t errorType = (eventData[11] >> 2) & 0x03; in handleSystemEvent() local 179 errorLog += ", Error Type: " + std::string(cxlError[errorType]) + in handleSystemEvent() 208 uint8_t errorType = (eventData[11] >> 2) & 0x03; in handleSystemEvent() local 210 errorLog += ", Error Type: " + std::string(cxlError[errorType]) + in handleSystemEvent() 243 UnifiedError errorType = static_cast<UnifiedError>(generalInfo & 0xF); in handleUnifiedBIOSEvent() local 244 switch (errorType) in handleUnifiedBIOSEvent() 378 static_cast<uint8_t>(errorType) - in handleUnifiedBIOSEvent() 551 to_hex_string(static_cast<uint8_t>(errorType)) + in handleUnifiedBIOSEvent()
|
| /openbmc/phosphor-dbus-monitor/src/ |
| H A D | elog.hpp | 140 template <typename errorType, typename metadataType, typename propertyType> 168 phosphor::logging::report<errorType>(metadataType(data.c_str())); in operator ()()
|
| /openbmc/u-boot/lib/lzma/ |
| H A D | Types.h | 128 SRes SeqInStream_Read2(ISeqInStream *stream, void *buf, size_t size, SRes errorType); 169 SRes LookInStream_Read2(ILookInStream *stream, void *buf, size_t size, SRes errorType);
|
| /openbmc/phosphor-logging/extensions/openpower-pels/ |
| H A D | src.cpp | 466 uint8_t errorType = strtoul(as.substr(0, 2).c_str(), nullptr, 16); in isBMCSRC() local 467 return (errorType == static_cast<uint8_t>(SRCType::bmcError) || in isBMCSRC() 468 errorType == static_cast<uint8_t>(SRCType::powerError)); in isBMCSRC() 478 uint8_t errorType = strtoul(as.substr(0, 2).c_str(), nullptr, 16); in isHostbootSRC() local 479 return errorType == static_cast<uint8_t>(SRCType::hostbootError); in isHostbootSRC()
|
| /openbmc/libcper/specification/document/ |
| H A D | cper-json-specification.tex | 229 errorType.value & uint64 & The raw value of the error type.\\ 230 errorType.name & string & The human readable name, if available, of the error type.\\ 231 errorType.description & string & A human readable description, if available, of the error type.\\ 266 errorType.name & string & If available, the human readable name of the type of processor error this… 267 errorType.value & uint64 & The integer value corresponding to the processor error type.\\ 300 processorErrorTypeValid & boolean & Whether the "errorType" field of the Generic Processor Error se… 489 errorType.value & uint64 & The raw value of the type of operation that caused the error.\\ 490 errorType.name & string & The human readable name, if available, of the type of operation that caus… 764 errorType.value & uint64 & The raw value of the error type this error info describes.\\ 765 errorType.name & string & The human readable name, if available, of the error type this error info … [all …]
|