Lines Matching full:tid
75 pldmd will always use TID 1 for S0 and TID 2 for S1 (if available).
215 std::string OemEventManager::prefixMsgStrCreation(pldm_tid_t tid, in prefixMsgStrCreation() argument
229 if (!tidToSocketNameMap.contains(tid)) in prefixMsgStrCreation()
231 description += "TID " + std::to_string(tid); in prefixMsgStrCreation()
235 description += tidToSocketNameMap[tid]; in prefixMsgStrCreation()
302 void OemEventManager::handleBootOverallEvent(pldm_tid_t tid, uint16_t sensorId, in handleBootOverallEvent() argument
392 source = prefixMsgStrCreation(tid, sensorId); in handleBootOverallEvent()
398 pldm_tid_t tid, uint16_t sensorId, const uint8_t* sensorData, in processNumericSensorEvent() argument
411 "Failed to decode numericSensorState event for terminus ID {TID}, error {RC} ", in processNumericSensorEvent()
412 "TID", tid, "RC", rc); in processNumericSensorEvent()
419 handleDIMMStatusEvent(tid, sensorId, presentReading); in processNumericSensorEvent()
426 handleBootOverallEvent(tid, sensorId, presentReading); in processNumericSensorEvent()
429 handlePCIeHotPlugEvent(tid, sensorId, presentReading); in processNumericSensorEvent()
432 handleDDRStatusEvent(tid, sensorId, presentReading); in processNumericSensorEvent()
443 handleVRDStatusEvent(tid, sensorId, presentReading); in processNumericSensorEvent()
446 handleNumericWatchdogEvent(tid, sensorId, presentReading); in processNumericSensorEvent()
453 description += prefixMsgStrCreation(tid, sensorId); in processNumericSensorEvent()
468 int OemEventManager::processStateSensorEvent(pldm_tid_t tid, uint16_t sensorId, in processStateSensorEvent() argument
482 "Failed to decode stateSensorState event for terminus ID {TID}, error {RC}", in processStateSensorEvent()
483 "TID", tid, "RC", rc); in processStateSensorEvent()
488 std::string source = prefixMsgStrCreation(tid, sensorId); in processStateSensorEvent()
532 description += prefixMsgStrCreation(tid, sensorId); in processStateSensorEvent()
547 pldm_tid_t tid, uint16_t sensorId, const uint8_t* sensorData, in processSensorOpStateEvent() argument
558 "Failed to decode sensorOpState event for terminus ID {TID}, error {RC}", in processSensorOpStateEvent()
559 "TID", tid, "RC", rc); in processSensorOpStateEvent()
567 description += prefixMsgStrCreation(tid, sensorId); in processSensorOpStateEvent()
580 pldm_tid_t tid, size_t eventDataOffset) in handleSensorEvent() argument
583 if (!tidToSocketNameMap.contains(tid)) in handleSensorEvent()
610 return processNumericSensorEvent(tid, sensorId, sensorData, in handleSensorEvent()
615 return processStateSensorEvent(tid, sensorId, sensorData, in handleSensorEvent()
620 return processSensorOpStateEvent(tid, sensorId, sensorData, in handleSensorEvent()
629 description += prefixMsgStrCreation(tid, sensorId); in handleSensorEvent()
648 void OemEventManager::handlePCIeHotPlugEvent(pldm_tid_t tid, uint16_t sensorId, in handlePCIeHotPlugEvent() argument
661 source = prefixMsgStrCreation(tid, sensorId); in handlePCIeHotPlugEvent()
727 void OemEventManager::handleDIMMStatusEvent(pldm_tid_t tid, uint16_t sensorId, in handleDIMMStatusEvent() argument
736 source = prefixMsgStrCreation(tid, sensorId); in handleDIMMStatusEvent()
812 void OemEventManager::handleDDRStatusEvent(pldm_tid_t tid, uint16_t sensorId, in handleDDRStatusEvent() argument
821 source = prefixMsgStrCreation(tid, sensorId); in handleDDRStatusEvent()
849 void OemEventManager::handleVRDStatusEvent(pldm_tid_t tid, uint16_t sensorId, in handleVRDStatusEvent() argument
857 source = prefixMsgStrCreation(tid, sensorId); in handleVRDStatusEvent()
900 pldm_tid_t tid, uint16_t sensorId, uint32_t presentReading) in handleNumericWatchdogEvent() argument
906 source = prefixMsgStrCreation(tid, sensorId); in handleNumericWatchdogEvent()
925 int OemEventManager::processOemMsgPollEvent(pldm_tid_t tid, uint16_t eventId, in processOemMsgPollEvent() argument
933 addCperSELLog(tid, eventId, &Hdr); in processOemMsgPollEvent()
963 pldm_tid_t tid, size_t eventDataOffset) in handlepldmMessagePollEvent() argument
966 if (!tidToSocketNameMap.contains(tid)) in handlepldmMessagePollEvent()
1000 … "Failed to set the RAS UE LED terminus ID {TID} sensor ID {SENSORID} - errors {ERROR}", in handlepldmMessagePollEvent()
1001 "TID", tid, "SENSORID", sensorID, "ERROR", e); in handlepldmMessagePollEvent()
1008 exec::task<int> OemEventManager::oemPollForPlatformEvent(pldm_tid_t tid) in oemPollForPlatformEvent() argument
1013 if (!tidToSocketNameMap.contains(tid)) in oemPollForPlatformEvent()
1018 if (!timeStampMap.contains(tid)) in oemPollForPlatformEvent()
1021 timeStampMap.emplace(std::make_pair(tid, t0)); in oemPollForPlatformEvent()
1026 uint64_t elapsed = t0 - timeStampMap[tid]; in oemPollForPlatformEvent()
1029 co_await manager->pollForPlatformEvent(tid, 0, 0); in oemPollForPlatformEvent()
1030 timeStampMap[tid] = t0; in oemPollForPlatformEvent()