| 111 | } |
| 112 | |
| 113 | int Decoder::binded_probe_index(const srd_channel *const pdch) |
| 114 | { |
| 115 | assert(pdch); |
| 116 | |
| 117 | auto it = _probes.find(pdch); |
| 118 | if (it != _probes.end()){ |
| 119 | return (*it).second; |
| 120 | } |
| 121 | |
| 122 | return -1; |
| 123 | } |
| 124 | |
| 125 | std::vector<const srd_channel*> Decoder::binded_probe_list() |
| 126 | { |
no test coverage detected