| 115 | Result<int64_t> SlowRandomAccessFile::GetSize() { return stream_->GetSize(); } |
| 116 | |
| 117 | Status SlowRandomAccessFile::Seek(int64_t position) { return stream_->Seek(position); } |
| 118 | |
| 119 | Result<int64_t> SlowRandomAccessFile::Tell() const { return stream_->Tell(); } |
| 120 |
no outgoing calls