| 653 | } |
| 654 | |
| 655 | Status MemoryMappedFile::Seek(int64_t position) { |
| 656 | RETURN_NOT_OK(memory_map_->CheckClosed()); |
| 657 | return memory_map_->Seek(position); |
| 658 | } |
| 659 | |
| 660 | Status MemoryMappedFile::Close() { return memory_map_->Close(); } |
| 661 |
no test coverage detected