| 84 | } |
| 85 | |
| 86 | void Disk::ResizeCache(const string& path, bool raw) |
| 87 | { |
| 88 | cache.reset(new DiskCache(path, size_shift_count, GetBlockCount())); |
| 89 | cache->SetRawMode(raw); |
| 90 | } |
| 91 | |
| 92 | void Disk::FlushCache() |
| 93 | { |
nothing calls this directly
no test coverage detected