| 374 | bool FileOutputStream::closed() const { return !impl_->is_open(); } |
| 375 | |
| 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); |
no test coverage detected