Home
last modified time | relevance | path

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

/packages/modules/ConfigInfrastructure/service/javatests/src/com/android/server/deviceconfig/
DSimPinReplayManagerTest.java76 boolean isPrepared = mSimPinReplayManager.prepareSimPinReplay(); in prepareSimPinReplay_success()
86 boolean isPrepared = mSimPinReplayManager.prepareSimPinReplay(); in prepareSimPinReplay_noSim()
99 boolean isPrepared = mSimPinReplayManager.prepareSimPinReplay(); in prepareSimPinReplay_noSimPin()
116 boolean isPrepared = mSimPinReplayManager.prepareSimPinReplay(); in prepareSimPinReplay_carrierDisableSimPin()
135 boolean isPrepared = mSimPinReplayManager.prepareSimPinReplay(); in prepareSimPinReplay_carrierEnabled()
154 boolean isPrepared = mSimPinReplayManager.prepareSimPinReplay(); in prepareSimPinReplay_prepareError()
173 boolean isPrepared = mSimPinReplayManager.prepareSimPinReplay(); in prepareSimPinReplay_preparePinRequired()
DUnattendedRebootManagerTest.java178 when(mSimPinReplayManager.prepareSimPinReplay()).thenReturn(true); in scheduleReboot()
200 when(mSimPinReplayManager.prepareSimPinReplay()).thenReturn(true); in scheduleReboot_requiresCharging_notCharging()
237 when(mSimPinReplayManager.prepareSimPinReplay()).thenReturn(true); in scheduleReboot_doesNotRequireCharging_notCharging()
264 when(mSimPinReplayManager.prepareSimPinReplay()).thenReturn(true); in scheduleReboot_requiresCharging_flagNotEnabled()
291 when(mSimPinReplayManager.prepareSimPinReplay()).thenReturn(true); in scheduleReboot_noPinLock()
312 when(mSimPinReplayManager.prepareSimPinReplay()).thenReturn(true); in scheduleReboot_noPreparation()
332 when(mSimPinReplayManager.prepareSimPinReplay()).thenReturn(false).thenReturn(true); in scheduleReboot_simPinPreparationFailed()
348 when(mSimPinReplayManager.prepareSimPinReplay()).thenReturn(true); in scheduleReboot_noInternet()
369 when(mSimPinReplayManager.prepareSimPinReplay()).thenReturn(true); in scheduleReboot_noInternetValidation()
407 when(mSimPinReplayManager.prepareSimPinReplay()).thenReturn(true); in scheduleReboot_elapsedRealtimeLessThanFrequency()
[all …]
/packages/modules/ConfigInfrastructure/service/java/com/android/server/deviceconfig/
DSimPinReplayManager.java41 public boolean prepareSimPinReplay() { in prepareSimPinReplay() method in SimPinReplayManager
DUnattendedRebootManager.java387 if (enableSimPinReplay() && !mSimPinReplayManager.prepareSimPinReplay()) { in tryRebootOrSchedule()