Home
last modified time | relevance | path

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

/openbmc/phosphor-logging/extensions/openpower-pels/
H A Dhost_notifier.cpp64 if (!_pelQueue.empty() && _dataIface.isHostUp()) in HostNotifier()
87 _pelQueue.push_back(pel.id()); in addPELToQueue()
180 _pelQueue.push_back(pel.id()); in newLogCallback()
194 auto firstPEL = _pelQueue.size() == 1; in newLogCallback()
208 auto queueIt = std::find(_pelQueue.begin(), _pelQueue.end(), id); in deleteLogCallback()
209 if (queueIt != _pelQueue.end()) in deleteLogCallback()
212 _pelQueue.erase(queueIt); in deleteLogCallback()
264 "ID", lg2::hex, _pelQueue.front()); in doNewLogNotify()
277 while (!doNotify && !_pelQueue.empty()) in doNewLogNotify()
279 id = _pelQueue.front(); in doNewLogNotify()
[all …]
H A Dhost_notifier.hpp82 return _pelQueue.size(); in queueSize()
293 std::deque<uint32_t> _pelQueue; member in openpower::pels::HostNotifier