Searched refs:remainingAttempts (Results 1 – 9 of 9) sorted by relevance
117 val remainingAttempts = mutableListOf<RemainingAttempts?>() regex121 launch { viewModel.remainingAttempts.toList(remainingAttempts) }131 assertThat(remainingAttempts).containsExactly(RemainingAttempts())145 val remainingAttempts = mutableListOf<RemainingAttempts?>() regex149 launch { viewModel.remainingAttempts.toList(remainingAttempts) }158 val attemptInfo = remainingAttempts.removeLastOrNull()162 assertThat(remainingAttempts).containsExactly(RemainingAttempts()) // initial value
173 val remainingAttempts = 12 regex175 flowOf(error(errorMessage, remainingAttempts))187 assertThat(checked!!.remainingAttempts).isEqualTo(remainingAttempts)227 val remainingAttempts = 3 regex236 emit(error(error, remainingAttempts, urgentMessage))248 assertThat(checked!!.remainingAttempts).isEqualTo(remainingAttempts)
129 assertThat(failedResult!!.remainingAttempts)165 assertThat(result!!.remainingAttempts).isEqualTo(1)187 assertThat(result!!.remainingAttempts).isEqualTo(0)
120 val remainingAttempts = (maxAttempts - numAttempts).coerceAtLeast(0) regex128 remainingAttempts,129 fetchFinalAttemptMessageOrNull(request, remainingAttempts)139 remainingAttempts: Int?,141 if (remainingAttempts != null && remainingAttempts <= 1) {149 remainingAttempts
17 val remainingAttempts: Int? = null,
90 public @NonNull Builder setRemainingAttempts(int remainingAttempts) { in setRemainingAttempts() argument91 mInstance.mRemainingAttempts = remainingAttempts; in setRemainingAttempts()
88 val remainingAttempts: Flow<RemainingAttempts> = _remainingAttempts.asStateFlow()130 RemainingAttempts(result.remainingAttempts, result.urgentMessage ?: "")
102 viewModel.remainingAttempts
1022 int remainingAttempts = Math.max(INVALID_REMOTE_GUESS_LIMIT - badGuesses, 0); in startRemoteLockscreenValidation() local1026 .setRemainingAttempts(remainingAttempts) in startRemoteLockscreenValidation()1042 int remainingAttempts = INVALID_REMOTE_GUESS_LIMIT - badGuesses; in validateRemoteLockscreen() local1043 if (remainingAttempts <= 0) { in validateRemoteLockscreen()