| 113 | bool SlowRandomAccessFile::closed() const { return stream_->closed(); } |
| 114 | |
| 115 | Result<int64_t> SlowRandomAccessFile::GetSize() { return stream_->GetSize(); } |
| 116 | |
| 117 | Status SlowRandomAccessFile::Seek(int64_t position) { return stream_->Seek(position); } |
| 118 |
no outgoing calls