Searched refs:CellSignalState (Results 1 – 5 of 5) sorted by relevance
/aosp12/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/qs/carrier/ |
H A D | QSCarrierTest.java | 67 CellSignalState c = new CellSignalState(true, mSignalIconId, "", "", false, false); in testUpdateState_first() 74 CellSignalState c = new CellSignalState(true, mSignalIconId, "", "", false, false); in testUpdateState_same() 82 CellSignalState c = new CellSignalState(true, mSignalIconId, "", "", false, false); in testUpdateState_changed() 86 CellSignalState other = c.changeVisibility(false); in testUpdateState_changed() 93 CellSignalState c = new CellSignalState(true, mSignalIconId, "", "", false, false); in testUpdateState_singleCarrier_first() 100 CellSignalState c = new CellSignalState(true, mSignalIconId, "", "", false, false); in testUpdateState_singleCarrier_noShowIcon() 109 CellSignalState c = new CellSignalState(true, mSignalIconId, "", "", false, false); in testUpdateState_multiCarrier_showIcon() 118 CellSignalState c = new CellSignalState(true, mSignalIconId, "", "", false, false); in testUpdateState_changeSingleMultiSingle()
|
H A D | CellSignalStateTest.kt | 33 val c = CellSignalState() 42 val c = CellSignalState()
|
/aosp12/frameworks/base/packages/SystemUI/src/com/android/systemui/qs/carrier/ |
H A D | QSCarrierGroupController.java | 73 private final CellSignalState[] mInfos = 74 new CellSignalState[SIM_SLOTS]; 102 mInfos[slotIndex] = new CellSignalState( 133 mInfos[slotIndex] = new CellSignalState( 144 mInfos[slotIndex] = new CellSignalState( 152 mInfos[slotIndex] = new CellSignalState( 170 mInfos[slotIndex] = new CellSignalState( 178 mInfos[slotIndex] = new CellSignalState( 257 mInfos[i] = new CellSignalState( in QSCarrierGroupController() 350 mInfos[i] = new CellSignalState(true, R.drawable.ic_blank, "", "", false, in handleUpdateState()
|
H A D | CellSignalState.kt | 24 data class CellSignalState( dataClass 40 fun changeVisibility(visible: Boolean): CellSignalState {
|
H A D | QSCarrier.java | 43 private CellSignalState mLastSignalState; 79 public boolean updateState(CellSignalState state, boolean isSingleCarrier) { in updateState()
|