Home
last modified time | relevance | path

Searched refs:mServiceStates (Results 1 – 3 of 3) sorted by relevance

/frameworks/base/packages/SystemUI/tests/src/com/android/keyguard/
DCarrierTextControllerTest.java144 mKeyguardUpdateMonitor.mServiceStates = new HashMap<>(); in testAirplaneMode()
166 mKeyguardUpdateMonitor.mServiceStates = new HashMap<>(); in testCardIOError()
261 mKeyguardUpdateMonitor.mServiceStates = new HashMap<>(); in testCreateInfo_OneValidSubscription()
285 mKeyguardUpdateMonitor.mServiceStates = new HashMap<>(); in testCreateInfo_OneValidSubscriptionWithRoaming()
309 mKeyguardUpdateMonitor.mServiceStates = new HashMap<>(); in testCarrierText_noTextOnReadySimWhenNull()
334 mKeyguardUpdateMonitor.mServiceStates = new HashMap<>(); in testCarrierText_noTextOnReadySimWhenNull_airplaneMode_wifiOn()
337 mKeyguardUpdateMonitor.mServiceStates.put(TEST_SUBSCRIPTION_NULL.getSubscriptionId(), ss); in testCarrierText_noTextOnReadySimWhenNull_airplaneMode_wifiOn()
389 mKeyguardUpdateMonitor.mServiceStates = new HashMap<>(); in testCarrierText_twoValidSubscriptions()
414 mKeyguardUpdateMonitor.mServiceStates = new HashMap<>(); in testCarrierText_oneDisabledSub()
439 mKeyguardUpdateMonitor.mServiceStates = new HashMap<>(); in testCarrierText_firstDisabledSub()
[all …]
/frameworks/base/packages/SystemUI/src/com/android/keyguard/
DKeyguardUpdateMonitor.java211 HashMap<Integer, ServiceState> mServiceStates = new HashMap<Integer, ServiceState>(); field in KeyguardUpdateMonitor
2192 mServiceStates.put(subId, serviceState); in handleServiceStateChange()
2433 return mServiceStates.get(subId); in getServiceState()
2682 for (int subId : mServiceStates.keySet()) { in dump()
2683 pw.println(" " + subId + "=" + mServiceStates.get(subId)); in dump()
DCarrierTextController.java284 ServiceState ss = mKeyguardUpdateMonitor.mServiceStates.get(subId); in updateCarrierText()