Home
last modified time | relevance | path

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

/hardware/google/av/media/eco/include/eco/
DECOData.h154 size_t getNumOfEntries() const { return mKeyValueStore.size(); } in getNumOfEntries()
157 size_t isEmpty() const { return mKeyValueStore.size() == 0; } in isEmpty()
189 std::unordered_map<std::string, ECODataValueType> mKeyValueStore; variable
199 dst->mKeyValueStore = src.mKeyValueStore; in copyKeyValue()
212 : mKeyValueStore(data.mKeyValueStore), mBeginReturned(false) { in ECODataKeyValueIterator()
213 mIterator = mKeyValueStore.begin(); in ECODataKeyValueIterator()
220 const std::unordered_map<std::string, ECOData::ECODataValueType>& mKeyValueStore;
/hardware/google/av/media/eco/
DECOData.cpp125 RETURN_STATUS_IF_ERROR(AParcel_writeUint32(parcel, int32_t(mKeyValueStore.size()))); in writeToParcel()
128 for (const auto& it : mKeyValueStore) { in writeToParcel()
190 mKeyValueStore[key] = value; in setString()
202 if (mKeyValueStore.find(key) == mKeyValueStore.end()) { in findString()
207 const std::string& entryValue = std::get<std::string>(mKeyValueStore.at(key)); in findString()
221 mKeyValueStore[key] = value; in setValue()
231 if (mKeyValueStore.find(key) == mKeyValueStore.end()) { in findValue()
236 *out = std::get<T>(mKeyValueStore.at(key)); in findValue()
293 mKeyValueStore[key] = value; in set()
302 if (mKeyValueStore.find(key) == mKeyValueStore.end()) { in find()
[all …]