Searched refs:mPropertyValues (Results 1 – 2 of 2) sorted by relevance
52 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 …]
95 PropertyMap mPropertyValues; // Sorted map of RecordId : VehiclePropValue. variable