Lines Matching refs:mPropValue
28 mPropValue = {}; in HidlHalPropValue()
29 mPropValue.prop = propId; in HidlHalPropValue()
33 mPropValue = {}; in HidlHalPropValue()
34 mPropValue.prop = propId; in HidlHalPropValue()
35 mPropValue.areaId = areaId; in HidlHalPropValue()
39 mPropValue = std::move(value); in HidlHalPropValue()
43 return mPropValue.prop; in getPropId()
47 return mPropValue.areaId; in getAreaId()
51 return mPropValue.timestamp; in getTimestamp()
55 return static_cast<VehiclePropertyStatus>(mPropValue.status); in getStatus()
59 mPropValue.value.int32Values = values; in setInt32Values()
63 return mPropValue.value.int32Values; in getInt32Values()
67 mPropValue.value.int64Values = values; in setInt64Values()
71 return mPropValue.value.int64Values; in getInt64Values()
75 mPropValue.value.floatValues = values; in setFloatValues()
79 return mPropValue.value.floatValues; in getFloatValues()
83 mPropValue.value.bytes = values; in setByteValues()
87 return mPropValue.value.bytes; in getByteValues()
91 mPropValue.value.stringValue = value; in setStringValue()
95 return mPropValue.value.stringValue; in getStringValue()
99 return &mPropValue; in toVehiclePropValue()
103 auto propValueCopy = mPropValue; in clone()