| 1631 | } |
| 1632 | |
| 1633 | int SigSession::get_trace_index_by_key_handel(void *handel) |
| 1634 | { |
| 1635 | int dex = 0; |
| 1636 | |
| 1637 | for (auto tr : _decode_traces) |
| 1638 | { |
| 1639 | if (tr->decoder()->get_key_handel() == handel) |
| 1640 | { |
| 1641 | return dex; |
| 1642 | } |
| 1643 | ++dex; |
| 1644 | } |
| 1645 | |
| 1646 | return -1; |
| 1647 | } |
| 1648 | |
| 1649 | void SigSession::remove_decoder(int index) |
| 1650 | { |
nothing calls this directly
no test coverage detected