| 546 | } |
| 547 | |
| 548 | void View::set_trig_pos(int percent) |
| 549 | { |
| 550 | uint64_t index = _session->cur_samplelimits() * percent / 100; |
| 551 | |
| 552 | if (_session->have_view_data() == false |
| 553 | || _session->is_working()){ |
| 554 | set_trig_cursor_posistion(index); |
| 555 | } |
| 556 | } |
| 557 | |
| 558 | void View::set_search_pos(uint64_t search_pos, bool hit) |
| 559 | { |
nothing calls this directly
no test coverage detected