Home
last modified time | relevance | path

Searched refs:recordID (Results 1 – 17 of 17) sorted by relevance

/openbmc/fb-ipmi-oem/include/
H A Dstoragecommands.hpp37 uint16_t recordID; member
165 uint16_t recordID; //!< SEL Record ID. member
186 uint16_t recordID; //!< Record ID. member
201 uint16_t recordID; //!< Record ID. member
210 uint16_t recordID; //!< Record ID. member
/openbmc/phosphor-host-ipmid/
H A Dselutility.hpp64 uint16_t recordID; //!< Record ID. member
85 uint16_t recordID; //!< Record ID. member
100 uint16_t recordID; //!< Record ID. member
H A Dsensorhandler.cpp1179 ipmiFruGetSdr(uint16_t recordID, uint8_t offset, uint8_t bytesToRead) in ipmiFruGetSdr() argument
1184 fruID = recordID - FRU_RECORD_ID_START; in ipmiFruGetSdr()
1193 record.header.recordId = recordID; in ipmiFruGetSdr()
1264 ipmiEntityGetSdr(uint16_t recordID, uint8_t offset, uint8_t bytesToRead) in ipmiEntityGetSdr() argument
1272 entityRecordID = recordID - ENTITY_RECORD_ID_START; in ipmiEntityGetSdr()
1281 record.header.recordId = recordID; in ipmiEntityGetSdr()
1331 ipmiSensorGetSdr(uint16_t /* reservationId */, uint16_t recordID, in ipmiSensorGetSdr() argument
1339 if (recordID != 0) in ipmiSensorGetSdr()
1346 if (recordID >= ENTITY_RECORD_ID_START) in ipmiSensorGetSdr()
1348 return ipmiEntityGetSdr(recordID, offset, bytesToRead); in ipmiSensorGetSdr()
[all …]
H A Dstoragehandler.cpp644 * - recordID ID used for SEL Record access
659 ipmi::RspType<uint16_t // recordID of the Added SEL entry
661 ipmiStorageAddSEL(uint16_t recordID, uint8_t recordType, in ipmiStorageAddSEL() argument
690 recordID = report<SELCreated>( in ipmiStorageAddSEL()
705 return ipmi::responseSuccess(recordID); in ipmiStorageAddSEL()
H A Dselutility.cpp212 record.event.eventRecord.recordID = in prepareSELEntry()
/openbmc/phosphor-host-ipmid/dbus-sdr/
H A Dsensorcommands.cpp654 int getOtherSensorsDataRecord(ipmi::Context::ptr ctx, uint16_t recordID,
657 int getOtherSensorsDataRecord(ipmi::Context::ptr ctx, uint16_t recordID, in getOtherSensorsDataRecord() argument
669 size_t sdrIndex(recordID - ipmi::getNumberOfSensors()); in getOtherSensorsDataRecord()
688 recordData = ipmi::storage::getType8SDRs(entity, recordID); in getOtherSensorsDataRecord()
699 recordData = ipmi::storage::getType12SDRs(type12Index, recordID); in getOtherSensorsDataRecord()
710 data.header.recordId = recordID; in getOtherSensorsDataRecord()
1805 void constructSensorSdrHeaderKey(uint16_t sensorNum, uint16_t recordID, in constructSensorSdrHeaderKey() argument
1811 record.header.recordId = recordID; in constructSensorSdrHeaderKey()
1823 uint16_t sensorNum, uint16_t recordID, const std::string& service, in constructSensorSdr() argument
1826 constructSensorSdrHeaderKey(sensorNum, recordID, record); in constructSensorSdr()
[all …]
H A Dstoragecommands.cpp786 static bool findSELEntry(const int recordID, in findSELEntry() argument
792 std::string search = " " + std::to_string(recordID) + ","; in findSELEntry()
816 const uint16_t recordID, in getNextRecordID() argument
819 uint16_t nextRecordID = recordID + 1; in getNextRecordID()
994 uint16_t recordID; in ipmiStorageGetSELEntry() local
998 recordID = std::stoul(recordIDStr); in ipmiStorageGetSELEntry()
1005 uint16_t nextRecordID = getNextRecordID(recordID, selLogFiles); in ipmiStorageGetSELEntry()
1086 nextRecordID, recordID, recordType, in ipmiStorageGetSELEntry()
1112 return ipmi::responseSuccess(nextRecordID, recordID, recordType, in ipmiStorageGetSELEntry()
1125 return ipmi::responseSuccess(nextRecordID, recordID, recordType, in ipmiStorageGetSELEntry()
/openbmc/fb-ipmi-oem/src/
H A Dstoragecommands.cpp618 if (req->recordID == lastRecordIndex) in ipmiStorageGetSDR()
620 req->recordID = lastRecord; in ipmiStorageGetSDR()
622 if (req->recordID > lastRecord) in ipmiStorageGetSDR()
627 uint16_t nextRecord = lastRecord >= static_cast<size_t>(req->recordID + 1) in ipmiStorageGetSDR()
628 ? req->recordID + 1 in ipmiStorageGetSDR()
638 if (req->recordID >= sensorTree.size()) in ipmiStorageGetSDR()
640 size_t fruIndex = req->recordID - sensorTree.size(); in ipmiStorageGetSDR()
655 data.header.record_id_msb = req->recordID << 8; in ipmiStorageGetSDR()
656 data.header.record_id_lsb = req->recordID & 0xFF; in ipmiStorageGetSDR()
669 uint16_t sensorIndex = req->recordID; in ipmiStorageGetSDR()
[all …]
H A Dselcommands.cpp1570 if (reqData->recordID == fb_oem::ipmi::sel::firstEntry) in ipmiStorageGetSELEntry()
1573 reqData->recordID = 1; in ipmiStorageGetSELEntry()
1575 else if (reqData->recordID == fb_oem::ipmi::sel::lastEntry) in ipmiStorageGetSELEntry()
1578 reqData->recordID = selCnt; in ipmiStorageGetSELEntry()
1583 if (selObj.getEntry(reqData->recordID, ipmiRaw) < 0) in ipmiStorageGetSELEntry()
1599 if (reqData->recordID == selCnt) in ipmiStorageGetSELEntry()
1605 nextRecord = reqData->recordID + 1; in ipmiStorageGetSELEntry()
/openbmc/phosphor-host-ipmid/include/dbus-sdr/
H A Dstoragecommands.hpp98 Type12Record(uint16_t recordID, uint8_t address, uint8_t chNumber, in Type12Record()
107 header.recordId = recordID;
H A Dsensorcommands.hpp145 int getOtherSensorsDataRecord(ipmi::Context::ptr ctx, uint16_t recordID,
/openbmc/intel-ipmi-oem/src/
H A Dstoragecommands.cpp742 static bool findSELEntry(const int recordID, in findSELEntry() argument
748 std::string search = " " + std::to_string(recordID) + ","; in findSELEntry()
772 const uint16_t recordID, in getNextRecordID() argument
775 uint16_t nextRecordID = recordID + 1; in getNextRecordID()
947 uint16_t recordID; in ipmiStorageGetSELEntry() local
951 recordID = std::stoul(recordIDStr); in ipmiStorageGetSELEntry()
958 uint16_t nextRecordID = getNextRecordID(recordID, selLogFiles); in ipmiStorageGetSELEntry()
1028 nextRecordID, recordID, recordType, in ipmiStorageGetSELEntry()
1051 return ipmi::responseSuccess(nextRecordID, recordID, recordType, in ipmiStorageGetSELEntry()
1062 return ipmi::responseSuccess(nextRecordID, recordID, recordType, in ipmiStorageGetSELEntry()
[all …]
H A Dipmi_to_redfish_hooks.cpp864 bool checkRedfishHooks(uint16_t recordID, uint8_t recordType, in checkRedfishHooks() argument
873 static_cast<uint8_t>(recordID), in checkRedfishHooks()
874 static_cast<uint8_t>(recordID >> 8), in checkRedfishHooks()
/openbmc/intel-ipmi-oem/include/
H A Dstoragecommands.hpp220 uint16_t recordID; member
271 Type12Record(uint16_t recordID, uint8_t address, uint8_t chNumber, in Type12Record()
280 get_sdr::header::set_record_id(recordID, &header);
H A Dipmi_to_redfish_hooks.hpp24 bool checkRedfishHooks(uint16_t recordID, uint8_t recordType,
/openbmc/openpower-host-ipmi-oem/
H A Doemhandler.hpp61 uint16_t recordID; //!< Record ID. member
/openbmc/libcper/specification/document/
H A Dcper-json-specification.tex110 recordID & uint64 & A unique value which, when combined with the \texttt{creatorID} field, uniquely…
1744 recordID & uint64 & Identifier for the referenced firmware error record. When the \texttt{revision}…