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.cpp1300 void SRC::addJSONCallout(const nlohmann::json& jsonCallout, in addJSONCallout() argument
1303 auto priority = getPriorityFromJSON(jsonCallout); in addJSONCallout()
1309 if (jsonCallout.contains("LocationCode")) in addJSONCallout()
1311 unexpandedLocCode = jsonCallout.at("LocationCode").get<std::string>(); in addJSONCallout()
1327 if (jsonCallout.contains("Procedure")) in addJSONCallout()
1329 auto procedure = jsonCallout.at("Procedure").get<std::string>(); in addJSONCallout()
1342 else if (jsonCallout.contains("SymbolicFRU")) in addJSONCallout()
1344 auto fru = jsonCallout.at("SymbolicFRU").get<std::string>(); in addJSONCallout()
1353 if (jsonCallout.contains("TrustedLocationCode") && !locCode.empty()) in addJSONCallout()
1355 trusted = jsonCallout.at("TrustedLocationCode").get<bool>(); in addJSONCallout()
[all …]
H A Dsrc.hpp565 void addJSONCallout(const nlohmann::json& jsonCallout,