Lines Matching refs:strValue
349 std::string& strValue) -> void in fillInventorySourceProperties() argument
360 properties.part_number = strValue; in fillInventorySourceProperties()
364 properties.spare_part_number = strValue; in fillInventorySourceProperties()
368 properties.serial_number = strValue; in fillInventorySourceProperties()
372 properties.build_date = strValue; in fillInventorySourceProperties()
376 properties.model = strValue; in fillInventorySourceProperties()
380 properties.manufacturer = strValue; in fillInventorySourceProperties()
403 std::string strValue = ""; in addInventorySource() local
408 strValue += static_cast<char>((value >> 8) & 0xFF); in addInventorySource()
409 strValue += static_cast<char>(value & 0xFF); in addInventorySource()
412 fillInventorySourceProperties(properties, reg.name, strValue); in addInventorySource()