| 376 | Result<int64_t> FileOutputStream::Tell() const { return impl_->Tell(); } |
| 377 | |
| 378 | Status FileOutputStream::Write(const void* data, int64_t length) { |
| 379 | return impl_->Write(data, length); |
| 380 | } |
| 381 | |
| 382 | int FileOutputStream::file_descriptor() const { return impl_->fd(); } |
| 383 |
nothing calls this directly
no test coverage detected