Home
last modified time | relevance | path

Searched refs:mThresholdCallbackMap (Results 1 – 4 of 4) sorted by relevance

/packages/modules/Telephony/services/QualifiedNetworksService/src/com/android/telephony/qns/
DQualityMonitor.java41 protected final HashMap<String, IThresholdListener> mThresholdCallbackMap = new HashMap<>(); field in QualityMonitor
62 mThresholdCallbackMap.put(key, thresholdCallback.mCallback); in registerThresholdChange()
69 mThresholdCallbackMap.remove(key); in unregisterThresholdChange()
84 if (mThresholdCallbackMap.get(key) == null) { in updateThresholdsForNetCapability()
113 mThresholdCallbackMap.clear(); in close()
123 pw.println(prefix + "mThresholdCallbackMap=" + mThresholdCallbackMap); in dump()
DWifiQualityMonitor.java203 IThresholdListener listener = mThresholdCallbackMap.get(key); in notifyThresholdChange()
DCellularQualityMonitor.java259 IThresholdListener listener = mThresholdCallbackMap.get(key); in notifyThresholdChange()
/packages/modules/Telephony/services/QualifiedNetworksService/tests/src/com/android/telephony/qns/
DCellularQualityMonitorTest.java216 Assert.assertEquals(1, mCellularQualityMonitor.mThresholdCallbackMap.size()); in testRegisterThresholdChange()
222 Assert.assertEquals(2, mCellularQualityMonitor.mThresholdCallbackMap.size()); in testRegisterThresholdChange()
253 Assert.assertEquals(1, mCellularQualityMonitor.mThresholdCallbackMap.size()); in testUnregisterThresholdChange()
264 Assert.assertEquals(0, mCellularQualityMonitor.mThresholdCallbackMap.size()); in testUnregisterThresholdChange()
281 Assert.assertEquals(2, mCellularQualityMonitor.mThresholdCallbackMap.size()); in testUpdateThresholdsForApn()
498 Assert.assertEquals(1, mCellularQualityMonitor.mThresholdCallbackMap.size()); in testNullThresholds()