Home
last modified time | relevance | path

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

/openbmc/phosphor-logging/extensions/openpower-pels/
H A Dhost_notifier.cpp215 auto sentIt = std::find(_sentPELs.begin(), _sentPELs.end(), id); in deleteLogCallback()
216 if (sentIt != _sentPELs.end()) in deleteLogCallback()
219 _sentPELs.erase(sentIt); in deleteLogCallback()
343 for (auto id : _sentPELs) in hostStateChange()
349 _sentPELs.clear(); in hostStateChange()
374 _sentPELs.push_back(id); in commandResponse()
435 auto sent = std::find(_sentPELs.begin(), _sentPELs.end(), id); in ackPEL()
436 if (sent != _sentPELs.end()) in ackPEL()
438 _sentPELs.erase(sent); in ackPEL()
469 auto sent = std::find(_sentPELs.begin(), _sentPELs.end(), id); in setHostFull()
[all …]
H A Dhost_notifier.hpp300 std::vector<uint32_t> _sentPELs; member in openpower::pels::HostNotifier