Lines Matching refs:propValue
465 PropertyValue propValue{}; in jsonEntryToDbusVal() local
468 propValue = static_cast<uint8_t>(value); in jsonEntryToDbusVal()
472 propValue = static_cast<uint16_t>(value); in jsonEntryToDbusVal()
476 propValue = static_cast<uint32_t>(value); in jsonEntryToDbusVal()
480 propValue = static_cast<uint64_t>(value); in jsonEntryToDbusVal()
484 propValue = static_cast<int16_t>(value); in jsonEntryToDbusVal()
488 propValue = static_cast<int32_t>(value); in jsonEntryToDbusVal()
492 propValue = static_cast<int64_t>(value); in jsonEntryToDbusVal()
496 propValue = static_cast<bool>(value); in jsonEntryToDbusVal()
500 propValue = static_cast<double>(value); in jsonEntryToDbusVal()
504 propValue = static_cast<std::string>(value); in jsonEntryToDbusVal()
511 return propValue; in jsonEntryToDbusVal()