Lines Matching refs:byte3

300     uint8_t byte3 = (presentReading & 0xff000000) >> 24;  in handleBootOverallEvent()  local
305 if (bootStageToMsgMap.contains(byte3)) in handleBootOverallEvent()
308 description += bootStageToMsgMap[byte3]; in handleBootOverallEvent()
310 switch (byte3) in handleBootOverallEvent()
337 (boot_stage::S0_DDR_TRAINING_FAILURE == byte3) ? "0" : "1"; in handleBootOverallEvent()
360 if (byte3 <= boot_stage::UEFI_STATUS_CLASS_CODE_MAX) in handleBootOverallEvent()
369 << static_cast<uint32_t>(byte3) << "); Status SubClass (0x" in handleBootOverallEvent()
723 uint8_t byte3 = (presentReading & 0xff000000) >> 24; in handleDIMMStatusEvent() local
737 if (dimmStatusToMsgMap.contains(byte3)) in handleDIMMStatusEvent()
739 if (byte3 == dimm_status::INSTALLED_NO_ERROR || in handleDIMMStatusEvent()
740 byte3 == dimm_status::INSTALLED_BUT_DISABLED) in handleDIMMStatusEvent()
745 description += dimmStatusToMsgMap[byte3]; in handleDIMMStatusEvent()
747 if (byte3 == dimm_status::TRAINING_FAILURE) in handleDIMMStatusEvent()
751 else if (byte3 == dimm_status::PMIC_TEMP_ALERT) in handleDIMMStatusEvent()
762 switch (byte3) in handleDIMMStatusEvent()
793 std::to_string(byte3); in handleDIMMStatusEvent()
807 uint8_t byte3 = (presentReading & 0xff000000) >> 24; in handleDDRStatusEvent() local
813 if (ddrStatusToMsgMap.contains(byte3)) in handleDDRStatusEvent()
815 if (byte3 == ddr_status::NO_SYSTEM_LEVEL_ERROR) in handleDDRStatusEvent()
820 description += ddrStatusToMsgMap[byte3]; in handleDDRStatusEvent()
822 if (byte3 == ddr_status::CONFIGURATION_FAILURE || in handleDDRStatusEvent()
823 byte3 == ddr_status::TRAINING_FAILURE) in handleDDRStatusEvent()
831 description += "has unsupported status " + std::to_string(byte3); in handleDDRStatusEvent()