| 246 | } |
| 247 | |
| 248 | bool HostExecutor::StartTimer(Stream *stream, Timer *timer) { |
| 249 | dynamic_cast<HostTimer *>(timer->implementation())->Start(stream); |
| 250 | return true; |
| 251 | } |
| 252 | |
| 253 | bool HostExecutor::StopTimer(Stream *stream, Timer *timer) { |
| 254 | dynamic_cast<HostTimer *>(timer->implementation())->Stop(stream); |
nothing calls this directly
no test coverage detected