| 694 | } |
| 695 | |
| 696 | std::string CCECClient::GetDeviceOSDName(const cec_logical_address iAddress) |
| 697 | { |
| 698 | CCECBusDevice *device = m_processor->GetDevice(iAddress); |
| 699 | return !!device? |
| 700 | device->GetOSDName(GetPrimaryLogicalAddress()) : |
| 701 | ""; |
| 702 | } |
| 703 | |
| 704 | uint16_t CCECClient::GetDevicePhysicalAddress(const cec_logical_address iAddress) |
| 705 | { |
nothing calls this directly
no test coverage detected