| 223 | int64_t BufferedOutputStream::bytes_buffered() const { return impl_->buffer_pos(); } |
| 224 | |
| 225 | Result<std::shared_ptr<OutputStream>> BufferedOutputStream::Detach() { |
| 226 | return impl_->Detach(); |
| 227 | } |
| 228 | |
| 229 | Status BufferedOutputStream::Close() { return impl_->Close(); } |
| 230 |
no outgoing calls