| 129 | } |
| 130 | |
| 131 | Status Skip(uint64_t n) override { |
| 132 | if (::lseek(fd_, n, SEEK_CUR) == static_cast<off_t>(-1)) { |
| 133 | return PosixError(filename_, errno); |
| 134 | } |
| 135 | return Status::OK(); |
| 136 | } |
| 137 | |
| 138 | virtual std::string GetName() const override { return filename_; } |
| 139 |
nothing calls this directly
no test coverage detected