Home
last modified time | relevance | path

Searched refs:attributeValue (Results 1 – 6 of 6) sorted by relevance

/openbmc/bios-settings-mgr/src/
H A Dmanager.cpp46 Manager::PendingAttribute attributeValue; in setAttribute() local
50 std::get<0>(attributeValue) = AttributeType::Integer; in setAttribute()
54 std::get<0>(attributeValue) = AttributeType::String; in setAttribute()
57 std::get<1>(attributeValue) = value; in setAttribute()
58 pendingAttrs.emplace(attribute, attributeValue); in setAttribute()
/openbmc/pldm/libpldmresponder/
H A Dbios_string_attribute.cpp119 auto attributeValue = optAttributeValue.value(); in constructEntry() local
120 if (attributeValue.index() == 1) in constructEntry()
122 currStr = std::get<std::string>(attributeValue); in constructEntry()
H A Dbios_integer_attribute.cpp124 auto attributeValue = optAttributeValue.value(); in constructEntry() local
125 if (attributeValue.index() == 0) in constructEntry()
127 currentValue = std::get<int64_t>(attributeValue); in constructEntry()
H A Dbios_enum_attribute.cpp230 auto attributeValue = optAttributeValue.value(); in constructEntry() local
231 if (attributeValue.index() == 1) in constructEntry()
233 auto currValue = std::get<std::string>(attributeValue); in constructEntry()
/openbmc/pldm/oem/ibm/libpldmresponder/
H A Dinband_code_update.cpp241 auto attributeValue = getBiosAttrValue<std::string>("fw_boot_side"); in setVersions() local
249 if (attributeValue.has_value()) in setVersions()
251 nextBootSideBiosValue = attributeValue.value(); in setVersions()
577 auto attributeValue = getBiosAttrValue<std::string>(bootNextSideAttrName); in processPriorityChangeNotification() local
578 if (attributeValue.has_value()) in processPriorityChangeNotification()
580 currNextBootSide = attributeValue.value(); in processPriorityChangeNotification()
H A Doem_ibm_handler.hpp531 auto attributeValue = in processOEMBaseBiosTable() local
534 if (attributeValue.has_value()) in processOEMBaseBiosTable()
536 currNextBootSide = attributeValue.value(); in processOEMBaseBiosTable()