Lines Matching refs:propValue
418 PropertyValue propValue{}; in jsonEntryToDbusVal() local
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()
464 return propValue; in jsonEntryToDbusVal()