| 175 | |
| 176 | |
| 177 | explicit ManufacturerCoder(IHardCoderDataCallback *callback) { |
| 178 | this->callback = callback; |
| 179 | pthread_t tid; |
| 180 | pthread_create(&tid, NULL, callbackThread, this); |
| 181 | } |
| 182 | |
| 183 | ~ManufacturerCoder() { |
| 184 | this->anrCallbackUidList.clear(); |
nothing calls this directly
no outgoing calls
no test coverage detected