| 334 | } |
| 335 | |
| 336 | bool SigSession::have_hardware_data() |
| 337 | { |
| 338 | if (_device_agent.have_instance() && _device_agent.is_hardware()) |
| 339 | { |
| 340 | Snapshot *data = get_signal_snapshot(); |
| 341 | return data->have_data(); |
| 342 | } |
| 343 | return false; |
| 344 | } |
| 345 | |
| 346 | struct ds_device_base_info *SigSession::get_device_list(int &out_count, int &actived_index) |
| 347 | { |
no test coverage detected