| 70 | } |
| 71 | |
| 72 | Status Seek(int64_t position) { |
| 73 | RETURN_NOT_OK(CheckClosed()); |
| 74 | int ret = driver_->Seek(fs_, file_, position); |
| 75 | CHECK_FAILURE(ret, "seek"); |
| 76 | return Status::OK(); |
| 77 | } |
| 78 | |
| 79 | Result<int64_t> Tell() { |
| 80 | RETURN_NOT_OK(CheckClosed()); |
nothing calls this directly
no test coverage detected