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()
58 bool wasValid = wd_service.isValid(bus); in getProperties()
70 wd_service.invalidate(); in getProperties()
114 bool wasValid = wd_service.isValid(bus); in getProperty()
115 auto request = wd_service.newMethodCall(bus, prop_intf, "Get"); in getProperty()
126 wd_service.invalidate(); in getProperty()
146 bool wasValid = wd_service.isValid(bus); in setProperty()
147 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()
223 WatchdogService wd_service; in ipmiSetWatchdogTimer() local
227 wd_service.setEnabled(false); in ipmiSetWatchdogTimer()
233 wd_service.setExpireAction(ipmiActionToWdAction(ipmi_action)); in ipmiSetWatchdogTimer()
244 wd_service.setInterval(interval); in ipmiSetWatchdogTimer()
245 wd_service.resetTimeRemaining(false); in ipmiSetWatchdogTimer()
248 wd_service.setInitialized(true); in ipmiSetWatchdogTimer()
249 wd_service.setLogTimeout(!dontLog); in ipmiSetWatchdogTimer()
[all …]
H A Dwatchdog_service.hpp105 static ipmi::ServiceCache wd_service; member in WatchdogService