Home
last modified time | relevance | path

Searched refs:mKeyValueStore (Results 1 – 3 of 3) sorted by relevance

/aosp12/hardware/google/av/media/eco/
H A DECOData.cpp132 for (const auto& it : mKeyValueStore) { in writeToParcel()
191 mKeyValueStore[key] = value; in setString()
203 if (mKeyValueStore.find(key) == mKeyValueStore.end()) { in findString()
222 mKeyValueStore[key] = value; in setValue()
232 if (mKeyValueStore.find(key) == mKeyValueStore.end()) { in findValue()
237 *out = std::get<T>(mKeyValueStore.at(key)); in findValue()
294 mKeyValueStore[key] = value; in set()
303 if (mKeyValueStore.find(key) == mKeyValueStore.end()) { in find()
308 *out = mKeyValueStore.at(key); in find()
340 return mIterator != mKeyValueStore.end(); in hasNext()
[all …]
H A DECOUtils.cpp55 dst->mKeyValueStore = src.mKeyValueStore; in copyKeyValue()
/aosp12/hardware/google/av/media/eco/include/eco/
H A DECOData.h152 size_t getNumOfEntries() const { return mKeyValueStore.size(); } in getNumOfEntries()
155 size_t isEmpty() const { return mKeyValueStore.size() == 0; } in isEmpty()
185 std::unordered_map<std::string, ECODataValueType> mKeyValueStore; variable
202 : mKeyValueStore(data.mKeyValueStore), mBeginReturned(false) { in ECODataKeyValueIterator()
203 mIterator = mKeyValueStore.begin(); in ECODataKeyValueIterator()
210 const std::unordered_map<std::string, ECOData::ECODataValueType>& mKeyValueStore;