| 89 | } |
| 90 | |
| 91 | void DMapCache::ClearCache() { |
| 92 | std::lock_guard<std::mutex> guard(mutex); |
| 93 | skipMemoryCheckIdxImage = NO_ID; |
| 94 | while (!IsEmpty()) |
| 95 | EjectOldest(); |
| 96 | } |
| 97 | |
| 98 | size_t DMapCache::ComputeUsedMemory() const { |
| 99 | std::lock_guard<std::mutex> guard(mutex); |
no test coverage detected