| 750 | } |
| 751 | |
| 752 | bool DebugGrpcChannel::WriteEvent(const Event& event) { |
| 753 | mutex_lock l(mu_); |
| 754 | return reader_writer_->Write(event); |
| 755 | } |
| 756 | |
| 757 | bool DebugGrpcChannel::ReadEventReply(EventReply* event_reply) { |
| 758 | mutex_lock l(mu_); |
no test coverage detected