Home
last modified time | relevance | path

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

/packages/services/Iwlan/src/com/google/android/iwlan/
DErrorPolicyManager.java1191 @Nullable RetryAction prevRetryAction, IwlanError newIwlanError) { in shouldAccumulateRetryIndex()
1192 if (!(prevRetryAction instanceof PolicyDerivedRetryAction)) { in shouldAccumulateRetryIndex()
1196 boolean isSameIwlanError = prevRetryAction.error().equals(newIwlanError); in shouldAccumulateRetryIndex()
1201 && prevRetryAction.error().getErrorType() in shouldAccumulateRetryIndex()
1215 @Nullable RetryAction prevRetryAction = mLastRetryActionByCause.get(errorCause); in generateRetryAction() local
1217 prevRetryAction != null ? prevRetryAction.errorCountOfSameCause() + 1 : 1; in generateRetryAction()
1219 shouldAccumulateRetryIndex(prevRetryAction, iwlanError); in generateRetryAction()
1222 ? ((PolicyDerivedRetryAction) prevRetryAction).currentRetryIndex() + 1 in generateRetryAction()
1238 @Nullable RetryAction prevRetryAction = mLastRetryActionByCause.get(errorCause); in generateRetryAction() local
1240 prevRetryAction != null ? prevRetryAction.errorCountOfSameCause() + 1 : 1; in generateRetryAction()