Home
last modified time | relevance | path

Searched refs:entryLength (Results 1 – 7 of 7) sorted by relevance

/openbmc/pldm/libpldmresponder/
H A Dbios_table.cpp113 auto entryLength = pldm_bios_table_string_entry_encode_length(str.length()); in constructEntry() local
114 table.resize(tableSize + entryLength); in constructEntry()
116 pldm_bios_table_string_entry_encode(table.data() + tableSize, entryLength, in constructEntry()
151 auto entryLength = in constructStringEntry() local
155 table.resize(tableSize + entryLength, 0); in constructStringEntry()
157 entryLength, info); in constructStringEntry()
171 auto entryLength = pldm_bios_table_attr_entry_integer_encode_length(); in constructIntegerEntry() local
173 table.resize(tableSize + entryLength, 0); in constructIntegerEntry()
175 entryLength, info); in constructIntegerEntry()
225 auto entryLength = pldm_bios_table_attr_entry_enum_encode_length( in constructEnumEntry() local
[all …]
H A Dbios.cpp324 auto entryLength = pldm_bios_table_attr_value_entry_length(entry); in getBIOSAttributeCurrentValueByHandle() local
327 entryLength, in getBIOSAttributeCurrentValueByHandle()
332 reinterpret_cast<const uint8_t*>(entry), entryLength, responsePtr); in getBIOSAttributeCurrentValueByHandle()
/openbmc/pldm/pldmtool/
H A Dpldm_bios_cmd.cpp810 size_t entryLength = 1; in exec() local
811 std::vector<uint8_t> attrValueEntry(entryLength, 0); in exec()
818 entryLength = in exec()
855 attrValueEntry.resize(entryLength); in exec()
872 entryLength = in exec()
876 attrValueEntry.resize(entryLength); in exec()
879 attrValueEntry.data(), entryLength, attrEntry->attr_handle, in exec()
894 entryLength = in exec()
896 attrValueEntry.resize(entryLength); in exec()
898 attrValueEntry.data(), entryLength, attrEntry->attr_handle, in exec()
[all …]
/openbmc/pldm/oem/ibm/libpldmresponder/
H A Dfile_io_type_pcie.hpp42 uint16_t entryLength; member
105 uint16_t entryLength; member
H A Dfile_io_type_pcie.cpp415 htobe16(singleEntryData->entryLength)); in parseTopologyData()
512 htobe16(cableData->entryLength)); in parseCableInfo()
/openbmc/libpldm/tests/dsp/
H A Dbios_table.cpp722 auto entryLength = pldm_bios_table_attr_value_entry_length(entry); in TEST() local
723 EXPECT_EQ(stringEntry.size(), entryLength); in TEST()
H A Dfirmware_update.cpp1325 constexpr size_t entryLength = in TEST() local
1328 std::array<uint8_t, entryLength> entry{}; in TEST()
1363 entry.data(), entryLength, &outEntry, &outActiveCompVerStr, in TEST()
1437 EXPECT_EQ(enc_payload_len, entryLength); in TEST()