Home
last modified time | relevance | path

Searched refs:getDaysLeftUntilReset (Results 1 – 6 of 6) sorted by relevance

/packages/modules/DeviceLock/DeviceLockController/tests/robolectric/src/com/android/devicelockcontroller/provision/worker/
DReportDeviceProvisionStateWorkerTest.java157 when(mResponse.getDaysLeftUntilReset()).thenReturn(TEST_DAYS_LEFT_UNTIL_RESET); in doWork_responseIsSuccessful_globalParametersSetAndEventLogged()
166 () -> assertThat(UserParameters.getDaysLeftUntilReset(mTestApp)).isEqualTo( in doWork_responseIsSuccessful_globalParametersSetAndEventLogged()
175 when(mResponse.getDaysLeftUntilReset()).thenReturn(TEST_DAYS_LEFT_UNTIL_RESET); in doWork_mandatory_doesNotSendNotificationOrScheduleAlarm()
195 when(mResponse.getDaysLeftUntilReset()).thenReturn(TEST_DAYS_LEFT_UNTIL_RESET); in doWork_deferred_retryState_schedulesAlarm()
211 when(mResponse.getDaysLeftUntilReset()).thenReturn(TEST_DAYS_LEFT_UNTIL_RESET); in doWork_deferred_dismissibleUiState_schedulesAlarmAndSendsNotification()
241 when(mResponse.getDaysLeftUntilReset()).thenReturn(TEST_DAYS_LEFT_UNTIL_RESET); in doWork_deferred_persistentUiState_schedulesAlarmAndSendsOngoingNotification()
271 when(mResponse.getDaysLeftUntilReset()).thenReturn(TEST_DAYS_LEFT_UNTIL_RESET); in doWork_deferred_factoryResetState_schedulesResetDeviceAlarm()
/packages/modules/DeviceLock/DeviceLockController/src/com/android/devicelockcontroller/provision/grpc/impl/
DReportDeviceProvisionStateGrpcResponseWrapper.java86 public int getDaysLeftUntilReset() { in getDaysLeftUntilReset() method in ReportDeviceProvisionStateGrpcResponseWrapper
88 return mResponse.getDaysLeftUntilReset(); in getDaysLeftUntilReset()
/packages/modules/DeviceLock/DeviceLockController/src/com/android/devicelockcontroller/storage/
DUserParameters.java172 public static int getDaysLeftUntilReset(Context context) { in getDaysLeftUntilReset() method in UserParameters
264 KEY_DAYS_LEFT_UNTIL_RESET, getDaysLeftUntilReset(context), in dump()
/packages/modules/DeviceLock/DeviceLockController/src/com/android/devicelockcontroller/provision/grpc/
DReportDeviceProvisionStateGrpcResponse.java54 public abstract int getDaysLeftUntilReset(); in getDaysLeftUntilReset() method in ReportDeviceProvisionStateGrpcResponse
/packages/modules/DeviceLock/DeviceLockController/src/com/android/devicelockcontroller/debug/
DDeviceCheckInClientDebug.java243 public int getDaysLeftUntilReset() {
/packages/modules/DeviceLock/DeviceLockController/src/com/android/devicelockcontroller/provision/worker/
DReportDeviceProvisionStateWorker.java200 int daysLeftUntilReset = response.getDaysLeftUntilReset(); in startWork()