Home
last modified time | relevance | path

Searched refs:eSELData (Results 1 – 3 of 3) sorted by relevance

/openbmc/openpower-host-ipmi-oem/
H A Doemhandler.cpp42 Entry::Level mapSeverity(const std::string& eSELData) in mapSeverity() argument
46 if (eSELData.size() > severityOffset) in mapSeverity()
49 uint8_t sev = 0xF0 & eSELData[severityOffset]; in mapSeverity()
62 std::string mapCalloutAssociation(const std::string& eSELData) in mapCalloutAssociation() argument
64 auto rec = reinterpret_cast<const SELEventRecord*>(&eSELData[0]); in mapCalloutAssociation()
140 void createOCCLogEntry(const std::string& eSELData) in createOCCLogEntry() argument
147 new char[(eSELData.size() * byteSeperator) + 1]()); in createOCCLogEntry()
149 for (size_t i = 0; i < eSELData.size(); i++) in createOCCLogEntry()
151 sprintf(&data[i * byteSeperator], "%02x ", eSELData[i]); in createOCCLogEntry()
153 data[eSELData.size() * byteSeperator] = '\0'; in createOCCLogEntry()
[all …]
H A Doemhandler.hpp41 void createLogEntry(const std::string& eSELData);
/openbmc/phosphor-host-ipmid/
H A Dstorageaddsel.cpp50 auto eSELData = readESEL(eSELFile); in createProcedureLogEntry() local
56 new char[(eSELData.size() * byteSeparator) + 1]()); in createProcedureLogEntry()
58 for (size_t i = 0; i < eSELData.size(); i++) in createProcedureLogEntry()
60 sprintf(&data[i * byteSeparator], "%02x ", eSELData[i]); in createProcedureLogEntry()
62 data[eSELData.size() * byteSeparator] = '\0'; in createProcedureLogEntry()