Home
last modified time | relevance | path

Searched refs:ValueType (Results 1 – 3 of 3) sorted by relevance

/openbmc/sdbusplus/include/sdbusplus/
H A Dunpack_properties.hpp31 template <typename OnErrorCallback, typename VariantType, typename ValueType>
36 ValueType& in readProperty()
45 if constexpr (std::is_pointer_v<ValueType>)
48 std::remove_cv_t<std::remove_pointer_t<ValueType>>>(
59 else if constexpr (utility::is_optional_v<ValueType>)
61 using InnerType = typename ValueType::value_type;
77 if (const auto value = std::get_if<ValueType>(&it->second))
88 else if constexpr (!utility::is_optional_v<ValueType> &&
89 !std::is_pointer_v<ValueType>)
98 template <typename OnErrorCallback, typename VariantType, typename ValueType,
[all …]
/openbmc/phosphor-pid-control/sensors/
H A Dhost.cpp30 if constexpr (std::is_same_v<ValueType, int64_t>) in scaleHelper()
67 if constexpr (std::is_same_v<ValueType, int64_t>) in getScale()
74 ValueType HostSensor::value(ValueType value) in value()
H A Dhost.hpp33 using ValueType = std::conditional_t<usingDouble, double, int64_t>; typedef
55 ValueType value(ValueType value) override;