Home
last modified time | relevance | path

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

/aosp12/packages/modules/Wifi/service/java/com/android/server/wifi/
H A DWifiScoreCard.java1589 int bwSampleKbps = mBandwidthSampleKbps[link]; in calculateError() local
1590 int bwEstExtErrPercent = calculateErrorPercent(reportedKbps, bwSampleKbps); in calculateError()
1591 int bwEstIntErrPercent = calculateErrorPercent(mFilterKbps[link], bwSampleKbps); in calculateError()
1592 int l2ErrPercent = calculateErrorPercent(l2Kbps, bwSampleKbps); in calculateError()
1595 mBwEstValue[mBandIdx][link][mSignalLevel] += bwSampleKbps; in calculateError()
1599 .append(" sampKbps ").append(bwSampleKbps) in calculateError()
1610 private int calculateErrorPercent(int inKbps, int bwSampleKbps) { in calculateErrorPercent() argument
1611 long errorPercent = 100L * (inKbps - bwSampleKbps) / bwSampleKbps; in calculateErrorPercent()
/aosp12/frameworks/opt/telephony/src/java/com/android/internal/telephony/dataconnection/
H A DLinkBandwidthEstimator.java781 private int calculateErrorPercent(int inKbps, int bwSampleKbps) { in calculateErrorPercent() argument
782 long errorPercent = 100L * (inKbps - bwSampleKbps) / bwSampleKbps; in calculateErrorPercent()