| 1157 | } |
| 1158 | |
| 1159 | void PrefetchCache(i64 offset, i64 length, bool wait) const noexcept { |
| 1160 | Handle_.PrefetchCache(offset, length, wait); |
| 1161 | } |
| 1162 | |
| 1163 | void EvictCache(i64 offset, i64 length) const noexcept { |
| 1164 | Handle_.EvictCache(offset, length); |
nothing calls this directly
no test coverage detected