Home
last modified time | relevance | path

Searched refs:_callouts (Results 1 – 4 of 4) sorted by relevance

/openbmc/phosphor-logging/extensions/openpower-pels/
H A Dcallouts.cpp38 _callouts.emplace_back(new Callout(pel)); in Callouts()
39 currentLength += _callouts.back()->flattenedSize(); in Callouts()
47 for (auto& callout : _callouts) in flatten()
58 auto it = std::ranges::find_if(_callouts, [&callout](const auto& c) { in addCallout()
65 if (it != _callouts.end()) in addCallout()
76 if (_callouts.size() < maxNumberOfCallouts) in addCallout()
78 _callouts.push_back(std::move(callout)); in addCallout()
80 _subsectionWordLength += _callouts.back()->flattenedSize() / 4; in addCallout()
88 std::ranges::sort(_callouts, in addCallout()
H A Dsrc.hpp202 return _callouts; in callouts()
533 if (!_callouts) in createCalloutsObject()
535 _callouts = std::make_unique<src::Callouts>(); in createCalloutsObject()
646 std::unique_ptr<src::Callouts> _callouts; member in openpower::pels::SRC
H A Dcallouts.hpp78 return _callouts; in callouts()
109 std::vector<std::unique_ptr<Callout>> _callouts; member in openpower::pels::src::Callouts
H A Dsrc.cpp272 _callouts = std::make_unique<src::Callouts>(stream); in unflatten()
288 if (_callouts) in flatten()
290 _callouts->flatten(stream); in flatten()
381 _size += _callouts ? _callouts->flattenedSize() : 0; in SRC()
611 if (!_callouts) in getCallouts()
617 const auto& callout = _callouts->callouts(); in getCallouts()
937 _callouts->addCallout(std::move(callout)); in addInventoryCallout()
1097 _callouts->addCallout(std::move(callout)); in addRegistryCallout()
1397 _callouts->addCallout(std::move(callout)); in addJSONCallout()