Lines Matching full:updater

17 #include "updater.hpp"
38 namespace updater namespace
48 // Get the appropriate Updater class instance based PSU model number
49 std::unique_ptr<updater::Updater> getClassInstance( in getClassInstance()
58 return std::make_unique<Updater>(psuInventoryPath, devPath, imageDir); in getClassInstance()
196 std::unique_ptr<updater::Updater> updaterPtr = internal::getClassInstance( in update()
221 return updater::update(bus, psuInventoryPath, imageDir); in validateAndUpdate()
229 Updater::Updater(const std::string& psuInventoryPath, in Updater() function in updater::Updater
252 void Updater::bindUnbind(bool doBind) in bindUnbind()
276 void Updater::setPresent(bool present) in setPresent()
292 bool Updater::isReadyToUpdate() in isReadyToUpdate()
373 int Updater::doUpdate() in doUpdate()
398 void Updater::createI2CDevice() in createI2CDevice()
404 void Updater::createServiceableEventLog( in createServiceableEventLog()
436 std::map<std::string, std::string> Updater::getI2CAdditionalData() in getI2CAdditionalData()
453 void Updater::callOutI2CEventLog( in callOutI2CEventLog()
473 void Updater::callOutPsuEventLog( in callOutPsuEventLog()
479 createServiceableEventLog(updater::FW_UPDATE_FAILED_MSG, in callOutPsuEventLog()
480 updater::ERROR_SEVERITY, additionalData); in callOutPsuEventLog()
486 void Updater::callOutSWEventLog( in callOutSWEventLog()
489 createServiceableEventLog(updater::PSU_FW_FILE_ISSUE_MSG, in callOutSWEventLog()
490 updater::ERROR_SEVERITY, additionalData); in callOutSWEventLog()
496 void Updater::callOutGoodEventLog() in callOutGoodEventLog()
501 createServiceableEventLog(updater::FW_UPDATE_SUCCESS_MSG, in callOutGoodEventLog()
502 updater::INFORMATIONAL_SEVERITY, additionalData); in callOutGoodEventLog()
504 } // namespace updater