Lines Matching full:attribute
92 error("System specific bios attribute directory {DIR} does not exist", in initBIOSAttributes()
538 info("Bios Attribute file path: {PATH}", "PATH", in constructAttributes()
615 "Failed to construct table entry for attribute '{ATTRIBUTE}', error - {ERROR}", in buildAndStoreAttrTables()
616 "ATTRIBUTE", attr->name, "ERROR", e); in buildAndStoreAttrTables()
736 "Failed to decode BIOS table possible values for attribute entry, response code '{RC}'", in displayStringHandle()
739 "Failed to decode BIOS table possible values for attribute entry"); in displayStringHandle()
767 auto attrHeader = table::attribute::decodeHeader(attrEntry); in traceBIOSUpdate()
788 "BIOS attribute '{ATTRIBUTE}' updated to value '{VALUE}' by BMC '{CHECK_BMC}'", in traceBIOSUpdate()
789 "ATTRIBUTE", attrName, "VALUE", nwVal, "CHECK_BMC", chkBMC); in traceBIOSUpdate()
800 "BIOS attribute '{ATTRIBUTE}' updated to value '{VALUE}' by BMC '{CHECK_BMC}'", in traceBIOSUpdate()
801 "ATTRIBUTE", attrName, "VALUE", value, "CHECK_BMC", chkBMC); in traceBIOSUpdate()
811 "BIOS attribute '{ATTRIBUTE}' updated to value '{VALUE}' by BMC '{CHECK_BMC}'", in traceBIOSUpdate()
812 "ATTRIBUTE", attrName, "VALUE", value, "CHECK_BMC", chkBMC); in traceBIOSUpdate()
836 defIndex] = table::attribute::decodeEnumEntry(attrEntry); in checkAttrValueToUpdate()
844 "Invalid index '{INDEX}' encountered for Enum type BIOS attribute", in checkAttrValueToUpdate()
856 def] = table::attribute::decodeIntegerEntry(attrEntry); in checkAttrValueToUpdate()
861 …ut of range index '{ATTRIBUTE_VALUE}' encountered for Integer type BIOS attribute for the lower bo… in checkAttrValueToUpdate()
871 auto stringConf = table::attribute::decodeStringEntry(attrEntry); in checkAttrValueToUpdate()
878 …"Invalid length '{LENGTH}' encountered for string type BIOS attribute value '{ATTRIBUTE_VALUE}' wh… in checkAttrValueToUpdate()
908 table::attribute::findByHandle(*attrTable, attrValHeader.attrHandle); in setAttrValue()
930 auto attrHeader = table::attribute::decodeHeader(attrEntry); in setAttrValue()
950 error("Set attribute value error - {ERROR}", "ERROR", e); in setAttrValue()
1004 "Missing handle for attribute '{ATTRIBUTE}' in BIOS String Table, error - '{ERROR}'", in processBiosAttrChangeNotification()
1005 "ATTRIBUTE", attrName, "ERROR", e); in processBiosAttrChangeNotification()
1012 error("BIOS Attribute table not present"); in processBiosAttrChangeNotification()
1016 table::attribute::findByStringHandle(*attrTable, attrNameHdl); in processBiosAttrChangeNotification()
1020 …"Failed to find attribute {ATTRIBUTE} in BIOS Attribute table with attribute handle '{ATTR_HANDLE}… in processBiosAttrChangeNotification()
1021 "ATTRIBUTE", attrName, "ATTR_HANDLE", attrNameHdl); in processBiosAttrChangeNotification()
1026 stringHdl] = table::attribute::decodeHeader(tableEntry); in processBiosAttrChangeNotification()
1032 error("Attribute value table not present"); in processBiosAttrChangeNotification()
1042 …"Failed to update the attribute value table for attribute handle '{ATTR_HANDLE}' and attribute ty… in processBiosAttrChangeNotification()
1075 auto header = table::attribute::decodeHeader(entry); in findAttrHandle()
1082 throw std::invalid_argument("Unknown attribute Name"); in findAttrHandle()
1090 for (auto& attribute : pendingAttributes) in constructPendingAttribute() local
1092 std::string attributeName = attribute.first; in constructPendingAttribute()
1093 auto& [attributeType, attributevalue] = attribute.second; in constructPendingAttribute()
1102 error("Wrong attribute name {NAME}", "NAME", attributeName); in constructPendingAttribute()
1117 error("Attribute type '{TYPE}' not supported", "TYPE", in constructPendingAttribute()