Home
last modified time | relevance | path

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

/openbmc/fb-ipmi-oem/src/
H A Dselcommands.cpp72 static void toHexStr(std::vector<uint8_t>& bytes, std::string& hexStr) in toHexStr() argument
80 hexStr = stream.str(); in toHexStr()
83 static int fromHexStr(const std::string hexStr, std::vector<uint8_t>& data) in fromHexStr() argument
85 for (unsigned int i = 0; i < hexStr.size(); i += 2) in fromHexStr()
90 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.cpp835 static int fromHexStr(const std::string& hexStr, std::vector<uint8_t>& data) in fromHexStr() argument
837 for (unsigned int i = 0; i < hexStr.size(); i += 2) in fromHexStr()
842 std::stoul(hexStr.substr(i, 2), nullptr, 16))); in fromHexStr()