| 21 | } |
| 22 | |
| 23 | bluetooth::RadioState State::getRadioState() const { |
| 24 | auto lock = mutex.asScopedLock(); |
| 25 | lock.lock(); |
| 26 | return radioState; |
| 27 | } |
| 28 | |
| 29 | void State::updateScanResults() { |
| 30 | // Fetch outside the lock to avoid holding it during a service call. |
no test coverage detected