Home
last modified time | relevance | path

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

/openbmc/phosphor-logging/extensions/openpower-pels/
H A Dsrc.cpp1265 void SRC::addJSONCallout(const nlohmann::json& jsonCallout, in addJSONCallout() argument
1268 auto priority = getPriorityFromJSON(jsonCallout); in addJSONCallout()
1274 if (jsonCallout.contains("LocationCode")) in addJSONCallout()
1276 unexpandedLocCode = jsonCallout.at("LocationCode").get<std::string>(); in addJSONCallout()
1292 if (jsonCallout.contains("Procedure")) in addJSONCallout()
1294 auto procedure = jsonCallout.at("Procedure").get<std::string>(); in addJSONCallout()
1307 else if (jsonCallout.contains("SymbolicFRU")) in addJSONCallout()
1309 auto fru = jsonCallout.at("SymbolicFRU").get<std::string>(); in addJSONCallout()
1318 if (jsonCallout.contains("TrustedLocationCode") && !locCode.empty()) in addJSONCallout()
1320 trusted = jsonCallout.at("TrustedLocationCode").get<bool>(); in addJSONCallout()
[all …]
H A Dsrc.hpp565 void addJSONCallout(const nlohmann::json& jsonCallout,