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.cpp52 if (!_pelQueue.empty() && _dataIface.isHostUp()) in HostNotifier()
75 _pelQueue.push_back(pel.id()); in addPELToQueue()
168 _pelQueue.push_back(pel.id()); in newLogCallback()
182 auto firstPEL = _pelQueue.size() == 1; in newLogCallback()
196 auto queueIt = std::find(_pelQueue.begin(), _pelQueue.end(), id); in deleteLogCallback()
197 if (queueIt != _pelQueue.end()) in deleteLogCallback()
200 _pelQueue.erase(queueIt); in deleteLogCallback()
252 "ID", lg2::hex, _pelQueue.front()); in doNewLogNotify()
265 while (!doNotify && !_pelQueue.empty()) in doNewLogNotify()
267 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