Home
last modified time | relevance | path

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

/aosp12/hardware/interfaces/automotive/vehicle/2.0/default/common/src/
H A DVehiclePropertyStore.cpp52 mPropertyValues.insert({ recId, propValue }); in writeValue()
74 auto it = mPropertyValues.find(recId); in removeValue()
75 if (it != mPropertyValues.end()) { in removeValue()
76 mPropertyValues.erase(it); in removeValue()
83 mPropertyValues.erase(range.first, range.second); in removeValuesForProperty()
89 allValues.reserve(mPropertyValues.size()); in readAllValues()
90 for (auto&& it : mPropertyValues) { in readAllValues()
168 auto it = mPropertyValues.find(recId); in getValueOrNullLocked()
169 return it == mPropertyValues.end() ? nullptr : &it->second; in getValueOrNullLocked()
174 auto beginIt = mPropertyValues.lower_bound( RecordId { propId, INT32_MIN, 0 }); in findRangeLocked()
[all …]
/aosp12/hardware/interfaces/automotive/vehicle/2.0/default/common/include/vhal_v2_0/
H A DVehiclePropertyStore.h96 PropertyMap mPropertyValues; // Sorted map of RecordId : VehiclePropValue. variable