| 16 | } |
| 17 | |
| 18 | void WriteFunc(const Handle& handle, uint32_t len, uint32_t error) { |
| 19 | if (error != CEC_SUCCESS) { |
| 20 | std::cout << "[WriteFunc] something error : " << error << std::endl; |
| 21 | } |
| 22 | } |
| 23 | |
| 24 | void ReadFunc(const Handle& handle, base::CBuffer* data, uint32_t len, uint32_t error) { |
| 25 | if (error != CEC_CLOSED && error != CEC_CONNECT_BREAK) { |
nothing calls this directly
no outgoing calls
no test coverage detected