/packages/modules/Connectivity/service/src/com/android/server/connectivity/ |
D | NetworkRanker.java | 61 FullScore getScore(); in getScore() method 112 return candidate.getScore().hasPolicy(POLICY_EVER_VALIDATED_NOT_AVOIDED_WHEN_BAD) in isBadWiFi() 132 if (!CollectionUtils.any(accepted, n -> n.getScore().hasPolicy(POLICY_YIELD_TO_BAD_WIFI))) { in applyYieldToBadWifiPolicy() 140 if (CollectionUtils.all(accepted, n -> n.getScore().hasPolicy(POLICY_YIELD_TO_BAD_WIFI))) { in applyYieldToBadWifiPolicy() 152 partitionInto(acceptedWithYielders, n -> !n.getScore().hasPolicy(POLICY_YIELD_TO_BAD_WIFI), in applyYieldToBadWifiPolicy() 183 partitionInto(candidates, nai -> nai.getScore().hasPolicy(POLICY_IS_INVINCIBLE), in getBestNetworkByPolicy() 189 partitionInto(candidates, nai -> nai.getScore().hasPolicy(POLICY_IS_VPN), in getBestNetworkByPolicy() 196 partitionInto(candidates, nai -> nai.getScore().hasPolicy(POLICY_EVER_USER_SELECTED) in getBestNetworkByPolicy() 197 && nai.getScore().hasPolicy(POLICY_ACCEPT_UNVALIDATED), in getBestNetworkByPolicy() 204 partitionInto(candidates, nai -> nai.getScore().hasPolicy(POLICY_IS_VALIDATED) in getBestNetworkByPolicy() [all …]
|
D | NetworkOffer.java | 72 @Override @NonNull public FullScore getScore() { in getScore() method in NetworkOffer
|
D | NetworkAgentInfo.java | 917 @Override public FullScore getScore() { in getScore() method in NetworkAgentInfo 965 @Override public FullScore getScore() { in getValidatedScoreable()
|
/packages/inputmethods/LatinIME/native/jni/src/suggest/core/result/ |
D | suggested_word.h | 32 if (left.getScore() != right.getScore()) { in operator() 33 return left.getScore() > right.getScore(); in operator() 57 int getScore() const { in getScore() function
|
D | suggestion_results.cpp | 35 JniDataUtils::putIntToArray(env, outScoresArray, outputIndex, suggestedWord.getScore()); in outputSuggestions() 72 if (score > mWorstSuggestion.getScore() || (score == mWorstSuggestion.getScore() in addSuggestion() 87 outScores[copyOfSuggestedWords.size() - 1] = suggestedWord.getScore(); in getSortedScores() 102 DUMP_SUGGESTION(it->getCodePoint(), it->getCodePointCount(), index, it->getScore()); in dumpSuggestions()
|
/packages/modules/Wifi/service/tests/wifitests/src/com/android/server/wifi/ |
D | WifiScoreReportTest.java | 479 int score = mWifiInfo.getScore(); in allowLowRssiIfDataIsMoving() 505 int score = mWifiInfo.getScore(); in giveUpOnBadRssiWhenDataIsNotMoving() 530 oops += ":" + mWifiInfo.getScore(); 532 int score = mWifiInfo.getScore(); 557 oops += ":" + mWifiInfo.getScore(); in stayOnIfRssiDoesNotGetBelowEntryThreshold() 558 if (mWifiInfo.getScore() < minScore) minScore = mWifiInfo.getScore(); in stayOnIfRssiDoesNotGetBelowEntryThreshold() 581 assertTrue(mWifiInfo.getScore() > ConnectedScore.WIFI_TRANSITION_SCORE); in allowTerribleRssiIfDataIsMovingWell() 587 assertTrue(mWifiInfo.getScore() < ConnectedScore.WIFI_TRANSITION_SCORE); in allowTerribleRssiIfDataIsMovingWell() 593 assertTrue(mWifiInfo.getScore() < ConnectedScore.WIFI_TRANSITION_SCORE); in allowTerribleRssiIfDataIsMovingWell() 627 assertTrue(mWifiInfo.getScore() < ConnectedScore.WIFI_TRANSITION_SCORE); [all …]
|
D | WifiNetworkSelectorTest.java | 735 when(mWifiInfo.getScore()).thenReturn(ConnectedScore.WIFI_TRANSITION_SCORE); in noSelectionWhenCurrentNetworkNotInScanResults() 798 when(mWifiInfo.getScore()).thenReturn(ConnectedScore.WIFI_TRANSITION_SCORE); in includeCurrentNetworkWhenCurrentNetworkNotNominated()
|
/packages/modules/Wifi/service/java/com/android/server/wifi/ |
D | WifiScoreReport.java | 325 if (mWifiConnectedNetworkScorerHolder == null && mLegacyIntScore == mWifiInfo.getScore()) { in reportNetworkScoreToConnectivityServiceIfNecessary() 557 if (mWifiInfo.getScore() > ConnectedScore.WIFI_TRANSITION_SCORE in calculateAndReportScore() 567 if (mWifiInfo.getScore() > ConnectedScore.WIFI_TRANSITION_SCORE in calculateAndReportScore() 581 if (mWifiInfo.getScore() >= ConnectedScore.WIFI_TRANSITION_SCORE in calculateAndReportScore() 584 } else if (mWifiInfo.getScore() < ConnectedScore.WIFI_TRANSITION_SCORE in calculateAndReportScore() 590 score = mWifiInfo.getScore(); in calculateAndReportScore() 647 if (mLegacyIntScore != mWifiInfo.getScore()) { in updateWifiMetrics() 957 public NetworkScore getScore() { in getScore() method in WifiScoreReport 1017 mNetworkAgent.sendNetworkScore(getScore());
|
D | ClientModeImpl.java | 1786 sb.append(" sc=").append(mWifiInfo.getScore()); 1797 sb.append(String.format(" score=%d", mWifiInfo.getScore())); 4100 logd("WifiNetworkAgent -> Wifi unwanted score " + mWifiInfo.getScore()); 4113 + mWifiInfo.getScore()); 4119 + mWifiInfo.getScore());
|
D | WifiNetworkSelector.java | 463 if (cmmState.connected && cmmState.wifiInfo.getScore() >= WIFI_POOR_SCORE in filterScanResults()
|
/packages/providers/ContactsProvider/src/com/android/providers/contacts/aggregation/util/ |
D | MatchScore.java | 100 public int getScore() { in getScore() method in MatchScore 141 return another.getScore() - getScore(); in compareTo()
|
D | ContactMatcher.java | 354 if (matchScore.getScore() >= scaledThreshold) { in pickBestMatches()
|
D | RawContactMatcher.java | 341 if (matchScore.getScore() >= scaledThreshold) { in pickBestMatches()
|
/packages/apps/Camera2/src/com/android/camera/stats/ |
D | Camera2FaceProxy.java | 36 Camera2FaceProxy convertedFace = new Camera2FaceProxy(face.getBounds(), face.getScore()); in from() 44 public int getScore() { in getScore() method in Camera2FaceProxy
|
/packages/modules/Connectivity/tests/unit/java/com/android/server/connectivity/ |
D | NetworkRankerTest.kt | 48 override fun getScore() = sc in caps() method in com.android.server.connectivity.NetworkRankerTest.TestScore
|
/packages/modules/Connectivity/tests/integration/util/com/android/server/ |
D | NetworkAgentWrapper.java | 219 public NetworkScore getScore() { in getScore() method in NetworkAgentWrapper
|
/packages/modules/Wifi/framework/java/android/net/wifi/ |
D | WifiInfo.java | 396 public int getScore() { in getScore() method in WifiInfo
|
/packages/modules/Wifi/framework/api/ |
D | system-current.txt | 500 method public int getScore();
|
/packages/modules/Connectivity/service/src/com/android/server/ |
D | ConnectivityService.java | 4076 || nai.getScore().getKeepConnectedReason() != NetworkScore.KEEP_CONNECTED_NONE) { in unneeded()
|
/packages/modules/RuntimeI18n/apex/hiddenapi/ |
D | hiddenapi-max-target-o-low-priority.txt | 6501 Landroid/icu/util/LocaleMatcher$ScoreData;->getScore(Landroid/icu/util/ULocale;Ljava/lang/String;Lj…
|