| 6192 | } |
| 6193 | |
| 6194 | string Stream::DebugStreamPointers() const { |
| 6195 | // Relies on the ToVlogString(const void*) overload above. |
| 6196 | return absl::StrCat("[stream=", ToVlogString(this), |
| 6197 | ",impl=", ToVlogString(implementation_.get()), "]"); |
| 6198 | } |
| 6199 | |
| 6200 | void Stream::CheckStatus(port::Status status) { |
| 6201 | if (status.ok()) { |
no test coverage detected