Home
last modified time | relevance | path

Searched refs:cachedService (Results 1 – 2 of 2) sorted by relevance

/openbmc/phosphor-host-ipmid/libipmid/
H A Dutils.cpp161 intf(intf), path(path), cachedService(std::nullopt), in ServiceCache()
166 intf(std::move(intf)), path(std::move(path)), cachedService(std::nullopt), in ServiceCache()
175 cachedService = ::ipmi::getService(bus, intf, path); in getService()
178 if (!cachedService) in getService()
182 return cachedService.value(); in getService()
188 cachedService = std::nullopt; in invalidate()
200 return cachedService && cachedBusName == bus.get_unique_name(); in isValid()
/openbmc/phosphor-host-ipmid/include/ipmid/
H A Dutils.hpp88 std::optional<std::string> cachedService; member in ipmi::ServiceCache