Searched refs:countCode (Results 1 – 1 of 1) sorted by relevance
/packages/modules/Wifi/service/java/com/android/server/wifi/ |
D | WifiScoreCard.java | 733 private int detectAbnormalFailureReason(NetworkConnectionStats stats, int countCode, in detectAbnormalFailureReason() argument 739 if (isHighPercentageAndEnoughCount(stats, countCode, reasonCode, in detectAbnormalFailureReason() 749 private boolean isHighPercentageAndEnoughCount(NetworkConnectionStats stats, int countCode, in isHighPercentageAndEnoughCount() argument 755 return ((stats.getCount(countCode) >= minCount) in isHighPercentageAndEnoughCount() 756 && ((stats.getCount(countCode) + 1) * 100) in isHighPercentageAndEnoughCount() 1722 FailureStats statsInc, int countCode, int reasonCode, in statsDeltaDetection() argument 1724 if (isRatioAboveThreshold(mRecentStats, mStatsPrevBuild, countCode, refCountCode) in statsDeltaDetection() 1725 && mRecentStats.getCount(countCode) >= minCount) { in statsDeltaDetection() 1730 if (isRatioAboveThreshold(mStatsPrevBuild, mRecentStats, countCode, refCountCode) in statsDeltaDetection() 1731 && mStatsPrevBuild.getCount(countCode) >= minCount) { in statsDeltaDetection() [all …]
|