Home
last modified time | relevance | path

Searched refs:mPropertyValues (Results 1 – 2 of 2) sorted by relevance

/hardware/interfaces/automotive/vehicle/2.0/default/common/src/
DVehiclePropertyStore.cpp52 mPropertyValues.insert({ recId, propValue }); in writeValue()
66 auto it = mPropertyValues.find(recId); in removeValue()
67 if (it != mPropertyValues.end()) { in removeValue()
68 mPropertyValues.erase(it); in removeValue()
75 mPropertyValues.erase(range.first, range.second); in removeValuesForProperty()
81 allValues.reserve(mPropertyValues.size()); in readAllValues()
82 for (auto&& it : mPropertyValues) { in readAllValues()
160 auto it = mPropertyValues.find(recId); in getValueOrNullLocked()
161 return it == mPropertyValues.end() ? nullptr : &it->second; in getValueOrNullLocked()
166 auto beginIt = mPropertyValues.lower_bound( RecordId { propId, INT32_MIN, 0 }); in findRangeLocked()
[all …]
/hardware/interfaces/automotive/vehicle/2.0/default/common/include/vhal_v2_0/
DVehiclePropertyStore.h95 PropertyMap mPropertyValues; // Sorted map of RecordId : VehiclePropValue. variable