Home
last modified time | relevance | path

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

/openbmc/pldm/libpldmresponder/
H A Dplatform_numeric_effecter.hpp36 const pldm_numeric_effecter_value_pdr* pdr, T& effecterValue, in getEffecterRawValue() argument
48 round(effecterValue - pdr->offset) / pdr->resolution); in getEffecterRawValue()
71 round(effecterValue - pdr->offset) / pdr->resolution); in getEffecterRawValue()
84 round(effecterValue - pdr->offset) / pdr->resolution); in getEffecterRawValue()
107 round(effecterValue - pdr->offset) / pdr->resolution); in getEffecterRawValue()
130 round(effecterValue - pdr->offset) / pdr->resolution); in getEffecterRawValue()
153 round(effecterValue - pdr->offset) / pdr->resolution); in getEffecterRawValue()
189 uint8_t* effecterValue, std::string propertyType) in convertToDbusValue() argument
193 uint8_t currentValue = *(reinterpret_cast<uint8_t*>(&effecterValue[0])); in convertToDbusValue()
198 int8_t currentValue = *(reinterpret_cast<int8_t*>(&effecterValue[0])); in convertToDbusValue()
[all …]
H A Dplatform.cpp710 uint8_t effecterValue[4] = {}; in setNumericEffecterValue() local
720 request, payloadLength, &effecterId, &effecterDataSize, effecterValue); in setNumericEffecterValue()
727 dBusIntf, *this, effecterId, effecterDataSize, effecterValue, in setNumericEffecterValue()
728 sizeof(effecterValue)); in setNumericEffecterValue()
/openbmc/phosphor-debug-collector/host-transport-extensions/pldm/oem/ibm/
H A Dpldm_oem_cmds.cpp109 std::array<uint8_t, sizeof(id)> effecterValue{}; in requestOffload()
111 memcpy(effecterValue.data(), &id, sizeof(id)); in requestOffload()
119 effecterValue.data(), request, in requestOffload()
/openbmc/pldm/libpldmresponder/test/
H A Dlibpldmresponder_platform_test.cpp343 uint32_t effecterValue = 2100000000; // 2036-07-18 21:20:00 in TEST() local
344 PropertyValue propertyValue = static_cast<uint64_t>(effecterValue); in TEST()
354 reinterpret_cast<uint8_t*>(&effecterValue), 4); in TEST()
387 uint64_t effecterValue = 9876543210; in TEST() local
391 reinterpret_cast<uint8_t*>(&effecterValue), 3); in TEST()
430 uint32_t effecterValue = 2100000000; in TEST() local
437 .WillOnce(Return(PropertyValue(static_cast<uint64_t>(effecterValue)))); in TEST()
467 ASSERT_EQ(effecterValue, valPresent); in TEST()
/openbmc/pldm/pldmtool/
H A Dpldm_platform_cmd.cpp1729 uint8_t* effecterValue = (uint8_t*)&maxEffecterValue; in createRequestMsg() local
1746 0, effecterId, effecterDataSize, effecterValue, request, in createRequestMsg()