| 77 | } |
| 78 | |
| 79 | Result<int64_t> Tell() { |
| 80 | RETURN_NOT_OK(CheckClosed()); |
| 81 | int64_t ret = driver_->Tell(fs_, file_); |
| 82 | CHECK_FAILURE(ret, "tell"); |
| 83 | return ret; |
| 84 | } |
| 85 | |
| 86 | bool is_open() const { return is_open_; } |
| 87 |
nothing calls this directly
no test coverage detected