| 195 | } |
| 196 | |
| 197 | static int sim_decoder_output_streamoff(void *priv) |
| 198 | { |
| 199 | sim_decoder_t *sim_decoder = priv; |
| 200 | |
| 201 | if (!sim_decoder->capture_on) |
| 202 | { |
| 203 | return 0; |
| 204 | } |
| 205 | |
| 206 | sim_decoder->flushing = true; |
| 207 | work_queue(HPWORK, &sim_decoder->work, |
| 208 | sim_decoder_work, sim_decoder, 0); |
| 209 | |
| 210 | return 0; |
| 211 | } |
| 212 | |
| 213 | static int sim_decoder_output_available(void *priv) |
| 214 | { |
nothing calls this directly
no test coverage detected