| 217 | } |
| 218 | |
| 219 | CCECBusDevice *CCECDeviceMap::GetActiveSource(void) const |
| 220 | { |
| 221 | for (CECDEVICEMAP::const_iterator it = m_busDevices.begin(); it != m_busDevices.end(); it++) |
| 222 | { |
| 223 | if (it->second->IsActiveSource()) |
| 224 | return it->second; |
| 225 | } |
| 226 | return NULL; |
| 227 | } |
| 228 | |
| 229 | void CCECDeviceMap::ResetActiveSourceSent(void) |
| 230 | { |
nothing calls this directly
no test coverage detected