Home
last modified time | relevance | path

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

/openbmc/phosphor-power/
H A Djson_parser_utils.cpp85 std::string strValue = parseString(element, true, variables); in parseDouble() local
86 const char* first = strValue.data(); in parseDouble()
87 const char* last = strValue.data() + strValue.size(); in parseDouble()
148 std::string strValue = parseString(element, true, variables); in parseInteger() local
149 const char* first = strValue.data(); in parseInteger()
150 const char* last = strValue.data() + strValue.size(); in parseInteger()
/openbmc/phosphor-modbus/rtu/firmware/
H A Ddevice_firmware.cpp100 std::string strValue = ""; in readVersionRegister() local
104 strValue += static_cast<char>((value >> 8) & 0xFF); in readVersionRegister()
105 strValue += static_cast<char>(value & 0xFF); in readVersionRegister()
108 currentFirmware->version(strValue); in readVersionRegister()
116 strValue, "NAME", config.name, "DEVICE_ADDRESS", config.address); in readVersionRegister()
/openbmc/phosphor-modbus/rtu/inventory/
H A Dmodbus_inventory.cpp349 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()
[all …]
/openbmc/bmcweb/redfish-core/include/
H A Dredfish_aggregator.hpp200 inline void addPrefixToStringItem(std::string& strValue, in addPrefixToStringItem() argument
204 auto parsed = boost::urls::parse_relative_ref(strValue); in addPrefixToStringItem()
210 BMCWEB_LOG_DEBUG("Couldn't parse URI from resource {}", strValue); in addPrefixToStringItem()
279 strValue = url.buffer(); in addPrefixToStringItem()
285 std::string* strValue = item.get_ptr<std::string*>(); in addPrefixToItem() local
286 if (strValue == nullptr) in addPrefixToItem()
294 addPrefixToStringItem(*strValue, prefix); in addPrefixToItem()
295 item = *strValue; in addPrefixToItem()
1233 std::string* strValue = in processContainsSubordinateResponse() local
1235 if (strValue == nullptr) in processContainsSubordinateResponse()
[all …]
/openbmc/bmcweb/redfish-core/src/
H A Dfilter_expr_executor.cpp166 const std::string* strValue = entry.get_ptr<const std::string*>(); in operator ()() local
167 if (strValue != nullptr) in operator ()()
171 return DateTimeString(*strValue); in operator ()()
173 return {*strValue}; in operator ()()
/openbmc/bmcweb/redfish-core/lib/
H A Daccount_service.hpp639 const std::string* strValue = in getLDAPConfigData() local
642 if (strValue == nullptr) in getLDAPConfigData()
648 confData.uri = *strValue; in getLDAPConfigData()
652 confData.bindDN = *strValue; in getLDAPConfigData()
656 confData.baseDN = *strValue; in getLDAPConfigData()
661 confData.searchScope = *strValue; in getLDAPConfigData()
666 confData.groupAttribute = *strValue; in getLDAPConfigData()
671 confData.userNameAttribute = *strValue; in getLDAPConfigData()
675 confData.serverType = *strValue; in getLDAPConfigData()
686 const std::string* strValue = in getLDAPConfigData() local
[all …]