Home
last modified time | relevance | path

Searched refs:wd_service (Results 1 – 3 of 3) sorted by relevance

/openbmc/phosphor-host-ipmid/app/
H A Dwatchdog_service.cpp28 ipmi::ServiceCache WatchdogService::wd_service(wd_intf, wd_path);
34 bool wasValid = wd_service.isValid(bus); in resetTimeRemaining()
43 wd_service.invalidate(); in resetTimeRemaining()
59 bool wasValid = wd_service.isValid(bus); in getProperties()
71 wd_service.invalidate(); in getProperties()
115 bool wasValid = wd_service.isValid(bus); in getProperty()
116 auto request = wd_service.newMethodCall(bus, prop_intf, "Get"); in getProperty()
127 wd_service.invalidate(); in getProperty()
148 bool wasValid = wd_service.isValid(bus); in setProperty()
149 auto request = wd_service.newMethodCall(bus, prop_intf, "Set"); in setProperty()
[all …]
H A Dwatchdog.cpp47 WatchdogService wd_service; in ipmiAppResetWatchdogTimer() local
51 if (!wd_service.getInitialized()) in ipmiAppResetWatchdogTimer()
60 wd_service.resetTimeRemaining(true); in ipmiAppResetWatchdogTimer()
226 WatchdogService wd_service; in ipmiSetWatchdogTimer() local
230 wd_service.setEnabled(false); in ipmiSetWatchdogTimer()
236 wd_service.setExpireAction(ipmiActionToWdAction(ipmi_action)); in ipmiSetWatchdogTimer()
247 wd_service.setInterval(interval); in ipmiSetWatchdogTimer()
248 wd_service.resetTimeRemaining(false); in ipmiSetWatchdogTimer()
251 wd_service.setInitialized(true); in ipmiSetWatchdogTimer()
252 wd_service.setLogTimeout(!dontLog); in ipmiSetWatchdogTimer()
[all …]
H A Dwatchdog_service.hpp105 static ipmi::ServiceCache wd_service; member in WatchdogService