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