/openbmc/phosphor-power/phosphor-regulators/src/ |
H A D | error_logging_utils.cpp | 56 ErrorType errorType{}; in logError() local 63 errorType = ErrorType::configFile; in logError() 64 if (!history.wasLogged(errorType)) in logError() 66 history.setWasLogged(errorType, true); in logError() 72 errorType = ErrorType::pmbus; in logError() 73 if (!history.wasLogged(errorType)) in logError() 75 history.setWasLogged(errorType, true); in logError() 81 errorType = ErrorType::writeVerification; in logError() 82 if (!history.wasLogged(errorType)) in logError() 84 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/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 | 473 uint8_t errorType = strtoul(as.substr(0, 2).c_str(), nullptr, 16); in isBMCSRC() local 474 return (errorType == static_cast<uint8_t>(SRCType::bmcError) || in isBMCSRC() 475 errorType == static_cast<uint8_t>(SRCType::powerError)); in isBMCSRC() 485 uint8_t errorType = strtoul(as.substr(0, 2).c_str(), nullptr, 16); in isHostbootSRC() local 486 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 …]
|