Lines Matching refs:idIndex

180 std::vector<uint8_t> MDRV2::getDataInformation(uint8_t idIndex)  in getDataInformation()  argument
185 if (idIndex >= maxDirEntries) in getDataInformation()
194 smbiosDir.dir[idIndex].common.id.dataInfo[index]); in getDataInformation()
197 responseInfo.push_back(smbiosValidFlag(idIndex)); in getDataInformation()
198 appendReversed(responseInfo, smbiosDir.dir[idIndex].common.size); in getDataInformation()
199 responseInfo.push_back(smbiosDir.dir[idIndex].common.dataVersion); in getDataInformation()
200 appendReversed(responseInfo, smbiosDir.dir[idIndex].common.timestamp); in getDataInformation()
292 uint8_t idIndex = dirIndex; in sendDirectoryInformation() local
304 smbiosDir.dir[idIndex + index].common.id.dataInfo); in sendDirectoryInformation()
311 bool MDRV2::sendDataInformation(uint8_t idIndex, uint8_t /* flag */, in sendDataInformation() argument
315 if (idIndex >= maxDirEntries) in sendDataInformation()
321 if (smbiosDir.dir[idIndex].common.dataSetSize != dataLen) in sendDataInformation()
324 smbiosDir.dir[idIndex].common.dataSetSize = dataLen; in sendDataInformation()
327 if (smbiosDir.dir[idIndex].common.dataVersion != dataVer) in sendDataInformation()
330 smbiosDir.dir[idIndex].common.dataVersion = dataVer; in sendDataInformation()
333 if (smbiosDir.dir[idIndex].common.timestamp != timeStamp) in sendDataInformation()
336 smbiosDir.dir[idIndex].common.timestamp = timeStamp; in sendDataInformation()
840 MDRV2::synchronizeDirectoryCommonData(uint8_t idIndex, uint32_t size) in synchronizeDirectoryCommonData() argument
845 smbiosDir.dir[idIndex].common.size = size; in synchronizeDirectoryCommonData()
846 result.push_back(smbiosDir.dir[idIndex].common.dataSetSize); in synchronizeDirectoryCommonData()
847 result.push_back(smbiosDir.dir[idIndex].common.dataVersion); in synchronizeDirectoryCommonData()
848 result.push_back(smbiosDir.dir[idIndex].common.timestamp); in synchronizeDirectoryCommonData()