Home
last modified time | relevance | path

Searched refs:hexStr (Results 1 – 5 of 5) sorted by relevance

/openbmc/phosphor-bmc-code-mgmt/i2c-vr/tda38640a/
H A Dtda38640a.cpp188 std::string hexStr = line.substr(pos + 2); in parseImage() local
189 configuration.checksum = std::stoul(hexStr, nullptr, 16); in parseImage()
/openbmc/fb-ipmi-oem/src/
H A Dselcommands.cpp74 static void toHexStr(std::vector<uint8_t>& bytes, std::string& hexStr) in toHexStr() argument
82 hexStr = stream.str(); in toHexStr()
85 static int fromHexStr(const std::string hexStr, std::vector<uint8_t>& data) in fromHexStr() argument
87 for (unsigned int i = 0; i < hexStr.size(); i += 2) in fromHexStr()
92 std::stoul(hexStr.substr(i, 2), nullptr, 16))); in fromHexStr()
/openbmc/intel-ipmi-oem/src/
H A Dipmi_to_redfish_hooks.cpp32 std::string& hexStr) in toHexStr() argument
40 hexStr = stream.str(); in toHexStr()
H A Dstoragecommands.cpp787 static int fromHexStr(const std::string& hexStr, std::vector<uint8_t>& data) in fromHexStr() argument
789 for (unsigned int i = 0; i < hexStr.size(); i += 2) in fromHexStr()
794 std::stoul(hexStr.substr(i, 2), nullptr, 16))); in fromHexStr()
/openbmc/phosphor-host-ipmid/dbus-sdr/
H A Dstoragecommands.cpp831 static int fromHexStr(const std::string& hexStr, std::vector<uint8_t>& data) in fromHexStr() argument
833 for (unsigned int i = 0; i < hexStr.size(); i += 2) in fromHexStr()
838 std::stoul(hexStr.substr(i, 2), nullptr, 16))); in fromHexStr()