| 1496 | } |
| 1497 | |
| 1498 | bool CCECClient::PollDevice(const cec_logical_address iAddress) |
| 1499 | { |
| 1500 | // try to find the primary device |
| 1501 | CCECBusDevice *primary = GetPrimaryDevice(); |
| 1502 | // poll the destination, with the primary as source |
| 1503 | if (primary) |
| 1504 | return primary->TransmitPoll(iAddress, true); |
| 1505 | |
| 1506 | return m_processor ? m_processor->PollDevice(iAddress) : false; |
| 1507 | } |
| 1508 | |
| 1509 | cec_logical_addresses CCECClient::GetActiveDevices(void) |
| 1510 | { |
nothing calls this directly
no test coverage detected