Home
last modified time | relevance | path

Searched refs:errorCode (Results 1 – 8 of 8) sorted by relevance

/openbmc/phosphor-power/tools/i2c/
H A Di2c_interface.hpp19 uint8_t addr, int errorCode = 0) : in I2CException() argument
20 bus(bus), addr(addr), errorCode(errorCode) in I2CException()
25 if (errorCode != 0) in I2CException()
27 ss << std::dec << ", errno " << errorCode << ": " in I2CException()
28 << strerror(errorCode); in I2CException()
40 int errorCode; member in i2c::I2CException
/openbmc/phosphor-power/tools/power-utils/
H A Daei_updater.cpp214 callOutI2CEventLog(additionalData, e.what(), e.errorCode); in writeIspKey()
270 callOutI2CEventLog(additionalData, e.what(), e.errorCode); in writeIspMode()
331 callOutI2CEventLog(additionalData, e.what(), e.errorCode); in writeIspStatusReset()
387 callOutI2CEventLog(additionalData, e.what(), e.errorCode); in writeIspStatusReset()
594 callOutI2CEventLog(additionalData, e.what(), e.errorCode); in performI2cWriteReadWithRetries()
702 callOutI2CEventLog(additionalData, e.what(), e.errorCode); in ispReadRebootStatus()
H A Dupdater.hpp198 const std::string& exceptionString = "", const int errorCode = 0);
H A Dupdater.cpp455 const std::string& exceptionString, const int errorCode) in callOutI2CEventLog() argument
461 additionalData["CALLOUT_ERRNO"] = std::to_string(errorCode); in callOutI2CEventLog()
/openbmc/bmcweb/test/redfish-core/include/utils/
H A Derror_code_test.cpp147 std::string errorCode = messages::messageVersionPrefix; in TEST() local
148 errorCode += "GeneralError"; in TEST()
152 EXPECT_EQ(final.jsonValue["error"]["code"].get<std::string>(), errorCode); in TEST()
/openbmc/dbus-sensors/src/nvme/
H A DNVMeBasicContext.cpp372 const boost::system::error_code errorCode) { in pollNVMeDevices() argument
373 if (errorCode == boost::asio::error::operation_aborted) in pollNVMeDevices()
378 if (errorCode) in pollNVMeDevices()
381 errorCode.message()); in pollNVMeDevices()
/openbmc/pldm/oem/meta/event/
H A Doem_event_manager.cpp341 uint8_t errorCode = eventData[12]; in handleUnifiedBIOSEvent() local
352 to_hex_string(errorCode) + ", Error Status: 0x" + in handleUnifiedBIOSEvent()
362 uint16_t errorCode = (eventData[9] << 8) | eventData[10]; in handleUnifiedBIOSEvent() local
371 to_hex_string(errorCode, 4); in handleUnifiedBIOSEvent()
/openbmc/phosphor-power/phosphor-regulators/src/
H A Derror_logging_utils.cpp98 e.errorCode); in logError()