Home
last modified time | relevance | path

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

/openbmc/pldm/libpldmresponder/
H A Dbios_config.cpp318 auto strLength = in checkAttributeValueTable() local
320 std::vector<char> buffer(strLength + 1 /* sizeof '\0' */); in checkAttributeValueTable()
325 attributeName = std::string(buffer.data(), buffer.data() + strLength); in checkAttributeValueTable()
357 auto strLength = in checkAttributeValueTable() local
360 std::vector<char> buffer(strLength + 1 /* sizeof '\0' */); in checkAttributeValueTable()
367 buffer.data() + strLength); in checkAttributeValueTable()
715 auto strLength = in decodeStringFromStringEntry() local
717 std::vector<char> buffer(strLength + 1 /* sizeof '\0' */); in decodeStringFromStringEntry()
721 return std::string(buffer.data(), buffer.data() + strLength); in decodeStringFromStringEntry()
H A Dbios_table.cpp102 auto strLength = pldm_bios_table_string_entry_decode_string_length(entry); in decodeString() local
103 std::vector<char> buffer(strLength + 1 /* sizeof '\0' */); in decodeString()
107 return std::string(buffer.data(), buffer.data() + strLength); in decodeString()
/openbmc/openbmc/meta-openembedded/meta-oe/recipes-support/libtinyxml/libtinyxml/
H A Dentity-encoding.patch41 outString->append( entity[0].str, entity[0].strLength );
/openbmc/libpldm/tests/dsp/
H A Dbios_table.cpp1042 auto strLength = pldm_bios_table_string_entry_decode_string_length(entry); in TEST() local
1043 EXPECT_EQ(strLength, 7); in TEST()
1045 std::vector<char> buffer(strLength + 1, 0); in TEST()
1048 EXPECT_EQ(strlen(buffer.data()), strLength); in TEST()
/openbmc/pldm/pldmtool/
H A Dpldm_bios_cmd.cpp284 auto strLength = in decodeStringFromStringEntry() local
286 std::vector<char> buffer(strLength + 1 /* sizeof '\0' */); in decodeStringFromStringEntry()
291 return std::string(buffer.data(), buffer.data() + strLength); in decodeStringFromStringEntry()