Home
last modified time | relevance | path

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

/frameworks/av/media/libmedia/include/media/
DIMediaSource.h154 auto p = mMemoryToIndex.find(mem.get()); in lookup()
155 if (p == mMemoryToIndex.end()) { in lookup()
161 (void)mMemoryToIndex.erase(p); in lookup()
170 auto p = mMemoryToIndex.find(mem.get()); in insert()
171 if (p == mMemoryToIndex.end()) { in insert()
178 (void)mMemoryToIndex.emplace(// C++11 mem.get(), std::make_pair(mem, mIndex)) in insert()
188 mMemoryToIndex.clear(); in reset()
193 for (auto it = mMemoryToIndex.begin(); it != mMemoryToIndex.end(); ) { in gc()
195 it = mMemoryToIndex.erase(it); in gc()
206 std::map<IMemory *, std::pair<sp<IMemory>, uint64_t>> mMemoryToIndex; member