Lines Matching refs:dataIn
46 bool FirmwareInventory::getFirmwareInventoryData(uint8_t*& dataIn, in getFirmwareInventoryData() argument
49 dataIn = getSMBIOSTypePtr(dataIn, firmwareInventoryInformationType); in getFirmwareInventoryData()
50 if (dataIn == nullptr) in getFirmwareInventoryData()
56 dataIn = smbiosNextPtr(dataIn); in getFirmwareInventoryData()
57 if (dataIn == nullptr) in getFirmwareInventoryData()
61 dataIn = getSMBIOSTypePtr(dataIn, firmwareInventoryInformationType); in getFirmwareInventoryData()
62 if (dataIn == nullptr) in getFirmwareInventoryData()
72 uint8_t* dataIn = smbiosTableStorage; in firmwareInfoUpdate() local
73 if (!getFirmwareInventoryData(dataIn, firmwareInventoryIndex)) in firmwareInfoUpdate()
80 auto firmwareInfo = reinterpret_cast<struct FirmwareInfo*>(dataIn); in firmwareInfoUpdate()
83 dataIn); in firmwareInfoUpdate()
84 firmwareVersion(firmwareInfo->version, firmwareInfo->length, dataIn); in firmwareInfoUpdate()
85 firmwareId(firmwareInfo->id, firmwareInfo->length, dataIn); in firmwareInfoUpdate()
87 dataIn); in firmwareInfoUpdate()
89 dataIn); in firmwareInfoUpdate()
95 uint8_t* dataIn, int inventoryIndex, in checkAndCreateFirmwarePath() argument
98 if (!getFirmwareInventoryData(dataIn, inventoryIndex)) in checkAndCreateFirmwarePath()
104 auto firmwareInfo = reinterpret_cast<struct FirmwareInfo*>(dataIn); in checkAndCreateFirmwarePath()
106 positionToString(firmwareInfo->id, firmwareInfo->length, dataIn); in checkAndCreateFirmwarePath()
108 firmwareInfo->length, dataIn); in checkAndCreateFirmwarePath()
120 dataIn, firmwareInfo->associatedComponentHandles[i]); in checkAndCreateFirmwarePath()
179 const uint8_t positionNum, const uint8_t structLen, uint8_t* dataIn) in firmwareComponentName() argument
181 std::string result = positionToString(positionNum, structLen, dataIn); in firmwareComponentName()
186 const uint8_t positionNum, const uint8_t structLen, uint8_t* dataIn) in firmwareVersion() argument
188 std::string result = positionToString(positionNum, structLen, dataIn); in firmwareVersion()
193 const uint8_t structLen, uint8_t* dataIn) in firmwareId() argument
195 std::string result = positionToString(positionNum, structLen, dataIn); in firmwareId()
200 const uint8_t positionNum, const uint8_t structLen, uint8_t* dataIn) in firmwareReleaseDate() argument
202 std::string result = positionToString(positionNum, structLen, dataIn); in firmwareReleaseDate()
207 const uint8_t positionNum, const uint8_t structLen, uint8_t* dataIn) in firmwareManufacturer() argument
209 std::string result = positionToString(positionNum, structLen, dataIn); in firmwareManufacturer()