| 1030 | } |
| 1031 | |
| 1032 | CECClientPtr CCECProcessor::GetClient(const cec_logical_address address) |
| 1033 | { |
| 1034 | CLockObject lock(m_mutex); |
| 1035 | std::map<cec_logical_address, CECClientPtr>::const_iterator client = m_clients.find(address); |
| 1036 | if (client != m_clients.end()) |
| 1037 | return client->second; |
| 1038 | return CECClientPtr(); |
| 1039 | } |
| 1040 | |
| 1041 | CECClientPtr CCECProcessor::GetPrimaryClient(void) |
| 1042 | { |
nothing calls this directly
no outgoing calls
no test coverage detected