Home
last modified time | relevance | path

Searched refs:propMap (Results 1 – 10 of 10) sorted by relevance

/openbmc/phosphor-host-ipmid/
H A Dipmi_fru_info_area.cpp137 auto iter = propMap.find(type); in appendChassisType()
138 if (iter != propMap.end()) in appendChassisType()
166 auto iter = propMap.find(key); in appendData()
167 if (iter != propMap.end()) in appendData()
231 auto iter = propMap.find(buildDate); in appendMfgDate()
300 if (!propMap.empty()) in buildChassisInfoArea()
306 appendChassisType(propMap, fruAreaData); in buildChassisInfoArea()
332 if (!propMap.empty()) in buildBoardInfoArea()
337 appendMfgDate(propMap, fruAreaData); in buildBoardInfoArea()
374 if (!propMap.empty()) in buildProductInfoArea()
[all …]
/openbmc/phosphor-pid-control/dbus/
H A Ddbushelper.cpp85 PropertyMap propMap; in getProperties() local
90 valueResponseMsg.read(propMap); in getProperties()
107 auto findUnit = propMap.find("Unit"); in getProperties()
108 if (findUnit != propMap.end()) in getProperties()
112 auto findScale = propMap.find("Scale"); in getProperties()
113 auto findMax = propMap.find("MaxValue"); in getProperties()
114 auto findMin = propMap.find("MinValue"); in getProperties()
119 if (findScale != propMap.end()) in getProperties()
123 if (findMax != propMap.end()) in getProperties()
127 if (findMin != propMap.end()) in getProperties()
[all …]
/openbmc/phosphor-dbus-monitor/src/
H A Dsnmp_trap.cpp34 auto& propMap = it->second; in trap() local
35 auto errorID = std::get<uint32_t>(propMap.at("Id")); in trap()
36 auto timestamp = std::get<uint64_t>(propMap.at("Timestamp")); in trap()
37 auto sev = std::get<Entry::Level>(propMap.at("Severity")); in trap()
39 auto message = std::get<std::string>(propMap.at("Message")); in trap()
41 std::get<std::vector<std::string>>(propMap.at("AdditionalData")); in trap()
/openbmc/phosphor-pid-control/ipmi/
H A Ddbus_mode.cpp62 PropertyMap propMap; in getFanCtrlProperty() local
67 valueResponseMsg.read(propMap); in getFanCtrlProperty()
69 *value = std::get<bool>(propMap[property]); in getFanCtrlProperty()
/openbmc/phosphor-power/cold-redundancy/
H A Dcold_redundancy.cpp199 CR::PropertyMapType propMap) { in createPSU() argument
209 std::get_if<std::string>(&propMap["Name"]); in createPSU()
218 std::get_if<uint64_t>(&propMap["Bus"]); in createPSU()
220 std::get_if<uint64_t>(&propMap["Address"]); in createPSU()
/openbmc/openpower-vpd-parser/vpd-manager/
H A Dmanager.cpp263 PropertyMap propMap; in hostStateCallBack() local
264 msg.read(object, propMap); in hostStateCallBack()
265 const auto itr = propMap.find("CurrentHostState"); in hostStateCallBack()
266 if (itr != propMap.end()) in hostStateCallBack()
305 PropertyMap propMap; in assetTagCallback() local
306 msg.read(object, propMap); in assetTagCallback()
307 const auto itr = propMap.find("AssetTag"); in assetTagCallback()
308 if (itr != propMap.end()) in assetTagCallback()
H A Dbios_handler.cpp115 BiosBaseTableType propMap; in biosAttribsCallback() local
116 msg.read(object, propMap); in biosAttribsCallback()
117 for (auto prop : propMap) in biosAttribsCallback()
/openbmc/intel-ipmi-oem/src/
H A Dappcommands.cpp164 PropertyMap propMap; in getActiveSoftwareVersionInfo() local
166 softwareVerIntf, propMap); in getActiveSoftwareVersionInfo()
177 std::get_if<std::string>(&propMap["Purpose"]); in getActiveSoftwareVersionInfo()
179 std::get_if<std::string>(&propMap["Version"]); in getActiveSoftwareVersionInfo()
H A Dmanufacturingcommands.cpp297 for (const auto& [intf, propMap] : objData) in findPwmName()
903 for (const auto& [intf, propMap] : fru) in findFruDevice()
907 auto findBus = propMap.find("FruBus"); in findFruDevice()
908 auto findAddress = propMap.find("FruAddress"); in findFruDevice()
909 auto findMacOffset = propMap.find("MacOffset"); in findFruDevice()
910 if (findBus == propMap.end() || findAddress == propMap.end() || in findFruDevice()
911 findMacOffset == propMap.end()) in findFruDevice()
H A Doemcommands.cpp3697 PropertyMapType propMap = in getPSUAddress() local
3708 auto psuBus = std::get_if<uint64_t>(&propMap["Bus"]); in getPSUAddress()
3710 std::get_if<std::vector<uint64_t>>(&propMap["Address"]); in getPSUAddress()