| 160 | } |
| 161 | |
| 162 | int DeviceData::hasLock() const { |
| 163 | base::MutexLock lock(_mutex); |
| 164 | return (_status & FE_HAS_LOCK) ? 1 : 0; |
| 165 | } |
| 166 | |
| 167 | fe_status_t DeviceData::getSignalStatus() const { |
| 168 | base::MutexLock lock(_mutex); |
nothing calls this directly
no outgoing calls
no test coverage detected