| 164 | // ======================================================================= |
| 165 | |
| 166 | void Frontend::enumerate( |
| 167 | StreamSpVector &streamVector, |
| 168 | const std::string &appDataPath, |
| 169 | decrypt::dvbapi::SpClient decrypt, |
| 170 | const std::string &dvbAdapterPath) { |
| 171 | const StreamSpVector::size_type beginSize = streamVector.size(); |
| 172 | SI_LOG_INFO("Detecting frontends in: %s", dvbAdapterPath.c_str()); |
| 173 | getAttachedFrontends(streamVector, appDataPath, decrypt, dvbAdapterPath, dvbAdapterPath); |
| 174 | const StreamSpVector::size_type endSize = streamVector.size(); |
| 175 | SI_LOG_INFO("Frontends found: %u", endSize - beginSize); |
| 176 | } |
| 177 | |
| 178 | // ======================================================================= |
| 179 | // -- base::XMLSupport -------------------------------------------------- |
nothing calls this directly
no test coverage detected