Home
last modified time | relevance | path

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

/aosp12/frameworks/opt/telephony/tests/telephonytests/src/com/android/internal/telephony/metrics/
H A DSimSlotStateTest.java82 assertEquals(0, state.numActiveEsims); in testEmptySlots()
96 assertEquals(0, state.numActiveEsims); in testSingleSim_nullSlot()
110 assertEquals(0, state.numActiveEsims); in testSingleSim_inactiveSlot()
124 assertEquals(0, state.numActiveEsims); in testSingleSim_noSimCard()
139 assertEquals(0, state.numActiveEsims); in testSingleSim_physicalSimCard()
154 assertEquals(0, state.numActiveEsims); in testSingleSim_physicalSimCardInErrorState()
170 assertEquals(0, state.numActiveEsims); in testSingleSim_physicalSimCardInRestrictedState()
185 assertEquals(0, state.numActiveEsims); in testSingleSim_esimCardWithNullCard()
200 assertEquals(0, state.numActiveEsims); in testSingleSim_esimCardWithoutProfile()
215 assertEquals(1, state.numActiveEsims); in testSingleSim_esimCardWithProfile()
[all …]
/aosp12/frameworks/opt/telephony/src/java/com/android/internal/telephony/metrics/
H A DSimSlotState.java31 public final int numActiveEsims; field in SimSlotState
37 int numActiveEsims = 0; in getCurrentState() local
51 numActiveEsims++; in getCurrentState()
60 return new SimSlotState(numActiveSlots, numActiveSims, numActiveEsims); in getCurrentState()
63 private SimSlotState(int numActiveSlots, int numActiveSims, int numActiveEsims) { in SimSlotState() argument
66 this.numActiveEsims = numActiveEsims; in SimSlotState()
H A DMetricsCollector.java281 state.numActiveEsims)); in pullSimSlotState()