Home
last modified time | relevance | path

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

/openbmc/phosphor-logging/extensions/openpower-pels/
H A Dcallout.cpp25 _locationCode.resize(_locationCodeSize); in Callout()
26 pel >> _locationCode; in Callout()
138 std::back_inserter(_locationCode)); in setLocationCode()
140 if (_locationCode.size() < locationCodeMaxSize) in setLocationCode()
143 _locationCode.push_back('\0'); in setLocationCode()
145 while (_locationCode.size() % 4) in setLocationCode()
147 _locationCode.push_back('\0'); in setLocationCode()
153 _locationCode.resize(locationCodeMaxSize); in setLocationCode()
154 _locationCode.back() = '\0'; in setLocationCode()
157 _locationCodeSize = _locationCode.size(); in setLocationCode()
[all …]
H A Dcallout.hpp220 if (!_locationCode.empty()) in locationCode()
223 lc = static_cast<const char*>(_locationCode.data()); in locationCode()
324 std::vector<char> _locationCode; member in openpower::pels::src::Callout