| 251 | } |
| 252 | |
| 253 | bool HostExecutor::StopTimer(Stream *stream, Timer *timer) { |
| 254 | dynamic_cast<HostTimer *>(timer->implementation())->Stop(stream); |
| 255 | return true; |
| 256 | } |
| 257 | |
| 258 | port::Status HostExecutor::BlockHostUntilDone(Stream *stream) { |
| 259 | AsHostStream(stream)->BlockUntilDone(); |
nothing calls this directly
no test coverage detected