Home
last modified time | relevance | path

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

/frameworks/av/media/libmedia/include/media/
DIMediaSource.h153 auto p = mMemoryToIndex.find(mem.get()); in lookup()
154 if (p == mMemoryToIndex.end()) { in lookup()
160 (void)mMemoryToIndex.erase(p); in lookup()
169 auto p = mMemoryToIndex.find(mem.get()); in insert()
170 if (p == mMemoryToIndex.end()) { in insert()
177 (void)mMemoryToIndex.emplace(// C++11 mem.get(), std::make_pair(mem, mIndex)) in insert()
187 mMemoryToIndex.clear(); in reset()
192 for (auto it = mMemoryToIndex.begin(); it != mMemoryToIndex.end(); ) { in gc()
194 it = mMemoryToIndex.erase(it); in gc()
205 std::map<IMemory *, std::pair<sp<IMemory>, uint64_t>> mMemoryToIndex; member