Lines Matching refs:mKeyValueStore
125 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()
307 *out = mKeyValueStore.at(key); in find()
330 if (mIterator == mKeyValueStore.end()) return false; in hasNext()
339 return mIterator != mKeyValueStore.end(); in hasNext()
374 for (const auto& it : mKeyValueStore) { in debugString()