| 14 | namespace leveldb { |
| 15 | |
| 16 | bool PersistentCacheMetaData::AddCacheFile(CacheFile* file) { |
| 17 | return cache_file_index_.Insert(file); |
| 18 | } |
| 19 | |
| 20 | PersistentCacheMetaData::CacheFileWrapper PersistentCacheMetaData::Lookup(uint64_t cache_id) { |
| 21 | CacheFile* ret = nullptr; |
no test coverage detected