Lines Matching full:bootprogress
62 void Hypervisor::updateCurrentHostState(std::string& bootProgress) in updateCurrentHostState() argument
64 debug("New BootProgress: {BOOTPROGRESS}", "BOOTPROGRESS", bootProgress); in updateCurrentHostState()
66 if (bootProgress == BootProgress::convertProgressStagesToString( in updateCurrentHostState()
67 BootProgress::ProgressStages::SystemInitComplete)) in updateCurrentHostState()
71 else if (bootProgress == BootProgress::convertProgressStagesToString( in updateCurrentHostState()
72 BootProgress::ProgressStages::OSRunning)) in updateCurrentHostState()
76 else if (bootProgress == BootProgress::convertProgressStagesToString( in updateCurrentHostState()
77 BootProgress::ProgressStages::Unspecified)) in updateCurrentHostState()
87 // BootProgress changed and it is not one of the above so in updateCurrentHostState()
99 auto propertyMap = msgData.find("BootProgress"); in bootProgressChangeEvent()
102 // Extract the BootProgress in bootProgressChangeEvent()
103 auto& bootProgress = std::get<std::string>(propertyMap->second); in bootProgressChangeEvent() local
104 updateCurrentHostState(bootProgress); in bootProgressChangeEvent()