Searched refs:hexStr (Results 1 – 4 of 4) sorted by relevance
/openbmc/fb-ipmi-oem/src/ |
H A D | selcommands.cpp | 72 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 D | ipmi_to_redfish_hooks.cpp | 32 std::string& hexStr) in toHexStr() argument 40 hexStr = stream.str(); in toHexStr()
|
H A D | storagecommands.cpp | 787 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 D | storagecommands.cpp | 835 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()
|