Home
last modified time | relevance | path

Searched refs:PCEIdentity (Results 1 – 5 of 5) sorted by relevance

/openbmc/phosphor-logging/extensions/openpower-pels/
H A Dpce_identity.hpp26 class PCEIdentity class
29 PCEIdentity() = delete;
30 ~PCEIdentity() = default;
31 PCEIdentity(const PCEIdentity&) = default;
32 PCEIdentity& operator=(const PCEIdentity&) = default;
33 PCEIdentity(PCEIdentity&&) = default;
34 PCEIdentity& operator=(PCEIdentity&&) = default;
43 explicit PCEIdentity(Stream& pel);
H A Dpce_identity.cpp25 PCEIdentity::PCEIdentity(Stream& pel) in PCEIdentity() function in openpower::pels::src::PCEIdentity
41 void PCEIdentity::flatten(Stream& pel) const in flatten()
H A Dcallout.hpp251 const std::unique_ptr<PCEIdentity>& pceIdentity() const in pceIdentity()
332 std::unique_ptr<PCEIdentity> _pceIdentity;
H A Dcallout.cpp60 case PCEIdentity::substructureType: in Callout()
62 _pceIdentity = std::make_unique<PCEIdentity>(pel); in Callout()
/openbmc/phosphor-logging/test/openpower-pels/
H A Dpce_identity_test.cpp34 PCEIdentity pce{stream}; in TEST()
56 EXPECT_THROW(PCEIdentity pce{stream}, std::out_of_range); in TEST()