Lines Matching refs:dBusMap

53     if (!dBusMap.has_value())  in setAttrValueOnDbus()
60 if (dBusMap->propertyType == "uint8_t") in setAttrValueOnDbus()
62 return dbusHandler->setDbusProperty(*dBusMap, in setAttrValueOnDbus()
65 else if (dBusMap->propertyType == "uint16_t") in setAttrValueOnDbus()
68 *dBusMap, static_cast<uint16_t>(currentValue)); in setAttrValueOnDbus()
70 else if (dBusMap->propertyType == "int16_t") in setAttrValueOnDbus()
72 return dbusHandler->setDbusProperty(*dBusMap, in setAttrValueOnDbus()
75 else if (dBusMap->propertyType == "uint32_t") in setAttrValueOnDbus()
78 *dBusMap, static_cast<uint32_t>(currentValue)); in setAttrValueOnDbus()
80 else if (dBusMap->propertyType == "int32_t") in setAttrValueOnDbus()
82 return dbusHandler->setDbusProperty(*dBusMap, in setAttrValueOnDbus()
85 else if (dBusMap->propertyType == "uint64_t") in setAttrValueOnDbus()
87 return dbusHandler->setDbusProperty(*dBusMap, currentValue); in setAttrValueOnDbus()
89 else if (dBusMap->propertyType == "int64_t") in setAttrValueOnDbus()
91 return dbusHandler->setDbusProperty(*dBusMap, in setAttrValueOnDbus()
94 else if (dBusMap->propertyType == "double") in setAttrValueOnDbus()
96 return dbusHandler->setDbusProperty(*dBusMap, in setAttrValueOnDbus()
101 dBusMap->propertyType); in setAttrValueOnDbus()
146 if (dBusMap->propertyType == "uint8_t") in getAttrValue()
150 else if (dBusMap->propertyType == "uint16_t") in getAttrValue()
154 else if (dBusMap->propertyType == "int16_t") in getAttrValue()
158 else if (dBusMap->propertyType == "uint32_t") in getAttrValue()
162 else if (dBusMap->propertyType == "int32_t") in getAttrValue()
166 else if (dBusMap->propertyType == "uint64_t") in getAttrValue()
170 else if (dBusMap->propertyType == "int64_t") in getAttrValue()
174 else if (dBusMap->propertyType == "double") in getAttrValue()
181 dBusMap->propertyType); in getAttrValue()
189 if (!dBusMap.has_value()) in getAttrValue()
197 dBusMap->objectPath.c_str(), dBusMap->propertyName.c_str(), in getAttrValue()
198 dBusMap->interface.c_str()); in getAttrValue()
206 "ATTRIBUTE", name, "PATH", dBusMap->objectPath, "INTERFACE", in getAttrValue()
207 dBusMap->interface, "PROPERTY", dBusMap->propertyName, "ERROR", e); in getAttrValue()