Searched refs:isCurrentNetwork (Results 1 – 7 of 7) sorted by relevance
/frameworks/opt/net/wifi/service/java/com/android/server/wifi/ |
D | ScoredNetworkNominator.java | 190 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()
|
D | WifiCandidates.java | 123 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()
|
D | CompatibilityScorer.java | 90 if (candidate.isCurrentNetwork()) { in scoreCandidate()
|
D | BubbleFunScorer.java | 87 if (candidate.isCurrentNetwork()) { in scoreCandidate()
|
D | ScoreCardBasedScorer.java | 99 if (candidate.isCurrentNetwork()) { in scoreCandidate()
|
D | ThroughputScorer.java | 86 int currentNetworkBoost = (candidate.isCurrentNetwork() && !unExpectedNoInternet) in scoreCandidate()
|
/frameworks/opt/net/wifi/tests/wifitests/src/com/android/server/wifi/ |
D | ConcreteCandidate.java | 55 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
|