Home
last modified time | relevance | path

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

/frameworks/base/services/core/java/com/android/server/connectivity/
DNetworkRanker.java39 NetworkAgentInfo bestNetwork = null; in getBestNetwork() local
44 bestNetwork = nai; in getBestNetwork()
48 return bestNetwork; in getBestNetwork()
/frameworks/base/tests/net/java/com/android/server/connectivity/
DNetworkRankerTest.kt44 val bestNetwork = nais[2] // The one with the top score in testGetBestNetwork() constant
46 assertEquals(bestNetwork, ranker.getBestNetwork(someRequest, nais)) in testGetBestNetwork()
53 val bestNetwork = nais[1] // Top score that's satisfying in testIgnoreNonSatisfying() constant
55 assertEquals(bestNetwork, ranker.getBestNetwork(someRequest, nais)) in testIgnoreNonSatisfying()
/frameworks/base/services/core/java/com/android/server/
DConnectivityService.java6867 final NetworkAgentInfo bestNetwork = mNetworkRanker.getBestNetwork(nri.request, nais); in computeNetworkReassignment() local
6868 if (bestNetwork != nri.mSatisfier) { in computeNetworkReassignment()
6871 nri, nri.mSatisfier, bestNetwork)); in computeNetworkReassignment()