Home
last modified time | relevance | path

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

/packages/modules/Wifi/service/java/com/android/server/wifi/
DWifiScoreReport.java654 final int transitionScore = isPrimary() ? ConnectedScore.WIFI_TRANSITION_SCORE in calculateAndReportScore() local
659 if (mWifiInfo.getScore() > transitionScore && score <= transitionScore in calculateAndReportScore()
665 score = transitionScore + 1; in calculateAndReportScore()
668 if (mWifiInfo.getScore() > transitionScore && score <= transitionScore) { in calculateAndReportScore()
677 score = transitionScore + 1; in calculateAndReportScore()
681 if (mWifiInfo.getScore() >= transitionScore && score < transitionScore) { in calculateAndReportScore()
683 } else if (mWifiInfo.getScore() < transitionScore && score >= transitionScore) { in calculateAndReportScore()
DAggressiveConnectedScore.java58 final int transitionScore = isPrimary() ? WIFI_TRANSITION_SCORE in generateScore() local
61 int score = (mRssi - threshRssi) + transitionScore; in generateScore()
DVelocityBasedConnectedScore.java179 final int transitionScore = isPrimary() ? WIFI_TRANSITION_SCORE in generateScore() local
181 if (mFilter.mx == null) return transitionScore + 1; in generateScore()
192 int score = (int) (Math.round(forecastRssi) - badRssi) + transitionScore; in generateScore()