Home
last modified time | relevance | path

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

/openbmc/phosphor-logging/extensions/openpower-pels/
H A Drepository.cpp122 _pelAttributes.emplace( in restore()
184 _pelAttributes.emplace(LogID(pelID(pel->id()), obmcID(pel->obmcLogID())), in add()
229 if (pel == _pelAttributes.end()) in remove()
257 _pelAttributes.erase(pel); in remove()
267 if (pel != _pelAttributes.end()) in getPELData()
289 if (pel != _pelAttributes.end()) in getPELFD()
309 for (const auto& [id, attributes] : _pelAttributes) in for_each()
381 if (pel != _pelAttributes.end()) in getPELAttributes()
392 auto attr = std::find_if(_pelAttributes.begin(), _pelAttributes.end(), in setPELHostTransState()
395 if ((attr != _pelAttributes.end()) && (attr->second.hostState != state)) in setPELHostTransState()
[all …]
H A Drepository.hpp202 return findPEL(id) != _pelAttributes.end(); in hasPEL()
320 return _pelAttributes; in getAttributesMap()
442 if (auto logID = findPEL(id); logID != _pelAttributes.end()) in getLogID()
483 return std::find_if(_pelAttributes.begin(), _pelAttributes.end(), in findPEL()
580 std::map<LogID, PELAttributes> _pelAttributes; member in openpower::pels::Repository