| 628 | } |
| 629 | |
| 630 | bool CCECBusDevice::RequestPhysicalAddress(const cec_logical_address initiator, bool bWaitForResponse /* = true */) |
| 631 | { |
| 632 | bool bReturn(false); |
| 633 | |
| 634 | if (!IsHandledByLibCEC()) |
| 635 | { |
| 636 | MarkBusy(); |
| 637 | LIB_CEC->AddLog(CEC_LOG_DEBUG, "<< requesting physical address of '%s' (%X)", GetLogicalAddressName(), m_iLogicalAddress); |
| 638 | bReturn = m_handler->TransmitRequestPhysicalAddress(initiator, m_iLogicalAddress, bWaitForResponse); |
| 639 | MarkReady(); |
| 640 | } |
| 641 | return bReturn; |
| 642 | } |
| 643 | |
| 644 | bool CCECBusDevice::TransmitPhysicalAddress(bool bIsReply) |
| 645 | { |
nothing calls this directly
no test coverage detected