Home
last modified time | relevance | path

Searched refs:calculateErrorPercent (Results 1 – 2 of 2) sorted by relevance

/aosp12/frameworks/opt/telephony/src/java/com/android/internal/telephony/dataconnection/
H A DLinkBandwidthEstimator.java759 int bwEstExtErrPercent = calculateErrorPercent(mLastReportedBwKbps, mBwSampleKbps); in calculateError()
760 int bwEstAvgErrPercent = calculateErrorPercent(mAvgUsedKbps, mBwSampleKbps); in calculateError()
761 int bwEstIntErrPercent = calculateErrorPercent(mFilterKbps, mBwSampleKbps); in calculateError()
762 int coldStartErrPercent = calculateErrorPercent(mStaticBwKbps, mBwSampleKbps); in calculateError()
781 private int calculateErrorPercent(int inKbps, int bwSampleKbps) { in calculateErrorPercent() method
/aosp12/packages/modules/Wifi/service/java/com/android/server/wifi/
H A DWifiScoreCard.java1590 int bwEstExtErrPercent = calculateErrorPercent(reportedKbps, bwSampleKbps); in calculateError()
1591 int bwEstIntErrPercent = calculateErrorPercent(mFilterKbps[link], bwSampleKbps); in calculateError()
1592 int l2ErrPercent = calculateErrorPercent(l2Kbps, bwSampleKbps); in calculateError()
1610 private int calculateErrorPercent(int inKbps, int bwSampleKbps) { in calculateErrorPercent() method in WifiScoreCard.PerNetwork