Lines Matching refs:mItemMap
77 mItemMap.clear();
81 mItemMap = other.mItemMap;
99 mItemMap[key].emplace_hint(mItemMap[key].end(), time, item); in put()
119 auto mapIt = mItemMap.find(key);
120 if (mapIt == mItemMap.end()) return {};
156 for (auto it = prefix != nullptr ? mItemMap.lower_bound(prefix) : mItemMap.begin();
157 it != mItemMap.end();
184 mItemMap.clear(); in clear()
251 for (auto it = mItemMap.begin(); it != mItemMap.end();) { in gc()
256 it = mItemMap.erase(it); in gc()
271 mLog.size(), mItemMap.size(), itemMapCount); in gc()
300 std::map<std::string /* item_key */, MapTimeItem> mItemMap GUARDED_BY(mLock);