| 384 | Result<int64_t> FileOutputStream::Tell() const { return impl_->Tell(); } |
| 385 | |
| 386 | Status FileOutputStream::Write(const void* data, int64_t length) { |
| 387 | return impl_->Write(data, length); |
| 388 | } |
| 389 | |
| 390 | int FileOutputStream::file_descriptor() const { return impl_->fd(); } |
| 391 |
nothing calls this directly
no test coverage detected