Lines Matching refs:presentReading
294 pldm_tid_t /*tid*/, uint16_t /*sensorId*/, uint32_t presentReading) in handleBootOverallEvent() argument
300 uint8_t byte0 = (presentReading & 0x000000ff); in handleBootOverallEvent()
301 uint8_t byte1 = (presentReading & 0x0000ff00) >> 8; in handleBootOverallEvent()
302 uint8_t byte2 = (presentReading & 0x00ff0000) >> 16; in handleBootOverallEvent()
303 uint8_t byte3 = (presentReading & 0xff000000) >> 24; in handleBootOverallEvent()
337 description += dimmIdxsToString(presentReading & 0x00ffffff); in handleBootOverallEvent()
370 << std::setw(8) << static_cast<uint32_t>(presentReading) in handleBootOverallEvent()
375 << static_cast<uint32_t>((presentReading & 0xffff0000) >> 16) in handleBootOverallEvent()
393 uint32_t presentReading; in processNumericSensorEvent() local
396 &sensorDataSize, &presentReading); in processNumericSensorEvent()
408 handleDIMMStatusEvent(tid, sensorId, presentReading); in processNumericSensorEvent()
415 handleBootOverallEvent(tid, sensorId, presentReading); in processNumericSensorEvent()
418 handlePCIeHotPlugEvent(tid, sensorId, presentReading); in processNumericSensorEvent()
421 handleDDRStatusEvent(tid, sensorId, presentReading); in processNumericSensorEvent()
432 handleVRDStatusEvent(tid, sensorId, presentReading); in processNumericSensorEvent()
435 handleNumericWatchdogEvent(tid, sensorId, presentReading); in processNumericSensorEvent()
450 << static_cast<uint32_t>(presentReading) << std::dec; in processNumericSensorEvent()
638 uint32_t presentReading) in handlePCIeHotPlugEvent() argument
642 PCIeHotPlugEventRecord_t record{presentReading}; in handlePCIeHotPlugEvent()
716 uint32_t presentReading) in handleDIMMStatusEvent() argument
720 uint8_t byte3 = (presentReading & 0xff000000) >> 24; in handleDIMMStatusEvent()
721 uint32_t byte012 = presentReading & 0xffffff; in handleDIMMStatusEvent()
800 uint32_t presentReading) in handleDDRStatusEvent() argument
804 uint8_t byte3 = (presentReading & 0xff000000) >> 24; in handleDDRStatusEvent()
805 uint32_t byte012 = presentReading & 0xffffff; in handleDDRStatusEvent()
836 uint32_t presentReading) in handleVRDStatusEvent() argument
844 VRDStatus_t status{presentReading}; in handleVRDStatusEvent()
876 << static_cast<uint32_t>(presentReading) << ";"; in handleVRDStatusEvent()
885 pldm_tid_t tid, uint16_t sensorId, uint32_t presentReading) in handleNumericWatchdogEvent() argument
892 if (presentReading & 0x01) in handleNumericWatchdogEvent()
896 if (presentReading & 0x02) in handleNumericWatchdogEvent()
900 if (presentReading & 0x04) in handleNumericWatchdogEvent()