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.java193 mKeyguardUpdateMonitor.mServiceStates = new HashMap<>(); in testCreateInfo_OneValidSubscription()
217 mKeyguardUpdateMonitor.mServiceStates = new HashMap<>(); in testCreateInfo_OneValidSubscriptionWithRoaming()
262 mKeyguardUpdateMonitor.mServiceStates = new HashMap<>(); in testCarrierText_twoValidSubscriptions()
287 mKeyguardUpdateMonitor.mServiceStates = new HashMap<>(); in testCarrierText_oneDisabledSub()
312 mKeyguardUpdateMonitor.mServiceStates = new HashMap<>(); in testCarrierText_firstDisabledSub()
338 mKeyguardUpdateMonitor.mServiceStates = new HashMap<>(); in testCarrierText_threeSubsMiddleDisabled()
361 mKeyguardUpdateMonitor.mServiceStates = new HashMap<>(); in testCarrierText_GroupedSubWithOpportunisticCarrierText()
/frameworks/base/packages/SystemUI/src/com/android/keyguard/
DKeyguardUpdateMonitor.java196 HashMap<Integer, ServiceState> mServiceStates = new HashMap<Integer, ServiceState>(); field in KeyguardUpdateMonitor
2057 mServiceStates.put(subId, serviceState); in handleServiceStateChange()
2280 return mServiceStates.get(subId); in getServiceState()
2521 for (int subId : mServiceStates.keySet()) { in dump()
2522 pw.println(" " + subId + "=" + mServiceStates.get(subId)); in dump()
DCarrierTextController.java343 ServiceState ss = mKeyguardUpdateMonitor.mServiceStates.get(subId); in updateCarrierText()