Home
last modified time | relevance | path

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

/frameworks/opt/net/wifi/service/java/com/android/server/wifi/
DScoredNetworkNominator.java190 boolean isCurrentNetwork = currentNetwork != null in nominateNetworks()
195 scanResult, configuredNetwork, isCurrentNetwork); in nominateNetworks()
198 scanResult, configuredNetwork, isCurrentNetwork); in nominateNetworks()
226 private Integer getNetworkScore(ScanResult scanResult, boolean isCurrentNetwork) { in getNetworkScore() argument
228 int score = mScoreCache.getNetworkScore(scanResult, isCurrentNetwork); in getNetworkScore()
231 + score + " isCurrentNetwork network: " + isCurrentNetwork); in getNetworkScore()
257 ScanResult scanResult, WifiConfiguration config, boolean isCurrentNetwork) { in trackUntrustedCandidate() argument
258 Integer score = getNetworkScore(scanResult, isCurrentNetwork); in trackUntrustedCandidate()
273 ScanResult scanResult, WifiConfiguration config, boolean isCurrentNetwork) { in trackExternallyScoredCandidate() argument
276 Integer score = getNetworkScore(scanResult, isCurrentNetwork); in trackExternallyScoredCandidate()
DWifiCandidates.java123 boolean isCurrentNetwork(); in isCurrentNetwork() method
186 boolean isCurrentNetwork, in CandidateImpl() argument
197 this.mIsCurrentNetwork = isCurrentNetwork; in CandidateImpl()
273 public boolean isCurrentNetwork() { in isCurrentNetwork() method in WifiCandidates.CandidateImpl
333 + (isCurrentNetwork() ? "current, " : "") in toString()
DCompatibilityScorer.java90 if (candidate.isCurrentNetwork()) { in scoreCandidate()
DBubbleFunScorer.java87 if (candidate.isCurrentNetwork()) { in scoreCandidate()
DScoreCardBasedScorer.java99 if (candidate.isCurrentNetwork()) { in scoreCandidate()
DThroughputScorer.java86 int currentNetworkBoost = (candidate.isCurrentNetwork() && !unExpectedNoInternet) in scoreCandidate()
/frameworks/opt/net/wifi/tests/wifitests/src/com/android/server/wifi/
DConcreteCandidate.java55 mIsCurrentNetwork = candidate.isCurrentNetwork(); in ConcreteCandidate()
199 public ConcreteCandidate setCurrentNetwork(boolean isCurrentNetwork) { in setCurrentNetwork() argument
200 mIsCurrentNetwork = isCurrentNetwork; in setCurrentNetwork()
205 public boolean isCurrentNetwork() { in isCurrentNetwork() method in ConcreteCandidate