Lines Matching refs:value

312                                   const PropertyValue& value) const  in setDbusProperty()
327 std::variant<uint8_t> v = std::get<uint8_t>(value); in setDbusProperty()
332 std::variant<bool> v = std::get<bool>(value); in setDbusProperty()
337 std::variant<int16_t> v = std::get<int16_t>(value); in setDbusProperty()
342 std::variant<uint16_t> v = std::get<uint16_t>(value); in setDbusProperty()
347 std::variant<int32_t> v = std::get<int32_t>(value); in setDbusProperty()
352 std::variant<uint32_t> v = std::get<uint32_t>(value); in setDbusProperty()
357 std::variant<int64_t> v = std::get<int64_t>(value); in setDbusProperty()
362 std::variant<uint64_t> v = std::get<uint64_t>(value); in setDbusProperty()
367 std::variant<double> v = std::get<double>(value); in setDbusProperty()
372 std::variant<std::string> v = std::get<std::string>(value); in setDbusProperty()
416 const nlohmann::json& value) in jsonEntryToDbusVal() argument
421 propValue = static_cast<uint8_t>(value); in jsonEntryToDbusVal()
425 propValue = static_cast<uint16_t>(value); in jsonEntryToDbusVal()
429 propValue = static_cast<uint32_t>(value); in jsonEntryToDbusVal()
433 propValue = static_cast<uint64_t>(value); in jsonEntryToDbusVal()
437 propValue = static_cast<int16_t>(value); in jsonEntryToDbusVal()
441 propValue = static_cast<int32_t>(value); in jsonEntryToDbusVal()
445 propValue = static_cast<int64_t>(value); in jsonEntryToDbusVal()
449 propValue = static_cast<bool>(value); in jsonEntryToDbusVal()
453 propValue = static_cast<double>(value); in jsonEntryToDbusVal()
457 propValue = static_cast<std::string>(value); in jsonEntryToDbusVal()
652 pldm::utils::PropertyValue value{present}; in setFruPresence() local
660 pldm::utils::DBusHandler().setDbusProperty(dbusMapping, value); in setFruPresence()
682 const pldm::utils::PropertyValue& value, in dbusPropValuesToDouble() argument
699 *doubleValue = static_cast<double>(std::get<uint8_t>(value)); in dbusPropValuesToDouble()
703 *doubleValue = static_cast<double>(std::get<int16_t>(value)); in dbusPropValuesToDouble()
707 *doubleValue = static_cast<double>(std::get<uint16_t>(value)); in dbusPropValuesToDouble()
711 *doubleValue = static_cast<double>(std::get<int32_t>(value)); in dbusPropValuesToDouble()
715 *doubleValue = static_cast<double>(std::get<uint32_t>(value)); in dbusPropValuesToDouble()
719 *doubleValue = static_cast<double>(std::get<int64_t>(value)); in dbusPropValuesToDouble()
723 *doubleValue = static_cast<double>(std::get<uint64_t>(value)); in dbusPropValuesToDouble()
727 *doubleValue = static_cast<double>(std::get<double>(value)); in dbusPropValuesToDouble()