| 208 | } |
| 209 | |
| 210 | void CCECDeviceMap::GetWakeDevices(const libcec_configuration &configuration, CECDEVICEVEC &devices) const |
| 211 | { |
| 212 | for (CECDEVICEMAP::const_iterator it = m_busDevices.begin(); it != m_busDevices.end(); it++) |
| 213 | { |
| 214 | if (configuration.wakeDevices[(uint8_t)it->first]) |
| 215 | devices.push_back(it->second); |
| 216 | } |
| 217 | } |
| 218 | |
| 219 | CCECBusDevice *CCECDeviceMap::GetActiveSource(void) const |
| 220 | { |
nothing calls this directly
no outgoing calls
no test coverage detected