| 211 | } |
| 212 | |
| 213 | static int sim_decoder_output_available(void *priv) |
| 214 | { |
| 215 | sim_decoder_t *sim_decoder = priv; |
| 216 | |
| 217 | if (sim_decoder->capture_on == false) |
| 218 | { |
| 219 | return 0; |
| 220 | } |
| 221 | |
| 222 | work_queue(HPWORK, &sim_decoder->work, |
| 223 | sim_decoder_work, sim_decoder, 0); |
| 224 | |
| 225 | return 0; |
| 226 | } |
| 227 | |
| 228 | static int sim_decoder_capture_available(void *priv) |
| 229 | { |
nothing calls this directly
no test coverage detected