Searched refs:mThresholdsList (Results 1 – 4 of 4) sorted by relevance
/packages/modules/Telephony/services/QualifiedNetworksService/src/com/android/telephony/qns/ |
D | QualityMonitor.java | 42 protected final ConcurrentHashMap<String, List<Threshold>> mThresholdsList = field in QualityMonitor 70 mThresholdsList.remove(key); in unregisterThresholdChange() 93 mThresholdsList.remove(key); in updateThresholdsForNetCapability() 96 mThresholdsList.put(key, new ArrayList<>(List.of(ths))); in updateThresholdsForNetCapability() 98 Log.d(mTag, "Thresholds stored: " + mThresholdsList); in updateThresholdsForNetCapability() 111 mThresholdsList.clear(); in close() 124 pw.println(prefix + "mThresholdsList=" + mThresholdsList); in dump()
|
D | WifiQualityMonitor.java | 214 for (Map.Entry<String, List<Threshold>> entry : mThresholdsList.entrySet()) { in checkForThresholdRegistration() 245 for (Map.Entry<String, List<Threshold>> entry : mThresholdsList.entrySet()) { in validateForWifiBackhaul() 281 for (Map.Entry<String, List<Threshold>> entry : mThresholdsList.entrySet()) { in validateThresholdsAfterBackHaul() 287 List<Threshold> thresholdsList = mThresholdsList.get(key); in checkAndNotifySignalStrength() 307 if (mThresholdsList.isEmpty()) { in updateRequest()
|
D | CellularQualityMonitor.java | 180 for (Map.Entry<String, List<Threshold>> entry : mThresholdsList.entrySet()) { in checkAndNotifySignalStrength()
|
/packages/modules/Telephony/services/QualifiedNetworksService/tests/src/com/android/telephony/qns/ |
D | CellularQualityMonitorTest.java | 217 Assert.assertEquals(1, mCellularQualityMonitor.mThresholdsList.size()); in testRegisterThresholdChange() 223 Assert.assertEquals(2, mCellularQualityMonitor.mThresholdsList.size()); in testRegisterThresholdChange() 226 mCellularQualityMonitor.mThresholdsList.containsKey( in testRegisterThresholdChange() 229 mCellularQualityMonitor.mThresholdsList.containsKey( in testRegisterThresholdChange() 235 .mThresholdsList in testRegisterThresholdChange() 241 .mThresholdsList in testRegisterThresholdChange() 254 Assert.assertEquals(1, mCellularQualityMonitor.mThresholdsList.size()); in testUnregisterThresholdChange() 256 mCellularQualityMonitor.mThresholdsList.containsKey( in testUnregisterThresholdChange() 259 mCellularQualityMonitor.mThresholdsList.containsKey( in testUnregisterThresholdChange() 265 Assert.assertEquals(0, mCellularQualityMonitor.mThresholdsList.size()); in testUnregisterThresholdChange() [all …]
|