Home
last modified time | relevance | path

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

/frameworks/opt/telephony/src/java/com/android/internal/telephony/data/
DLinkBandwidthEstimator.java160 public static final int NUM_SIGNAL_LEVEL = 5; field in LinkBandwidthEstimator
787 if (currLevel < 0 || currLevel >= NUM_SIGNAL_LEVEL) { in getAvgUsedBandwidthAdjacentThreeLevelKbps()
802 if (signalLevel < 0 || signalLevel >= NUM_SIGNAL_LEVEL) { in getAvgUsedBandwidthAtLevel()
1250 for (int level = 0; level < NUM_SIGNAL_LEVEL; level++) { in toString()
1256 for (int level = 0; level < NUM_SIGNAL_LEVEL; level++) { in toString()
/frameworks/opt/telephony/src/java/com/android/internal/telephony/metrics/
DTelephonyMetrics.java34 import static com.android.internal.telephony.data.LinkBandwidthEstimator.NUM_SIGNAL_LEVEL;
3003 final long[] mBwEstErrorAcc = new long[NUM_SIGNAL_LEVEL];
3004 final long[] mStaticBwErrorAcc = new long[NUM_SIGNAL_LEVEL];
3005 final long[] mBwAccKbps = new long[NUM_SIGNAL_LEVEL];
3006 final int[] mCount = new int[NUM_SIGNAL_LEVEL];
3026 for (int k = 0; k < NUM_SIGNAL_LEVEL; k++) { in printValues()
3034 for (int k = 0; k < NUM_SIGNAL_LEVEL; k++) { in printAvgValues()
3044 for (int level = 0; level < NUM_SIGNAL_LEVEL; level++) { in writeBandwidthStats()
/frameworks/opt/telephony/tests/telephonytests/src/com/android/internal/telephony/metrics/
DTelephonyMetricsTest.java27 import static com.android.internal.telephony.data.LinkBandwidthEstimator.NUM_SIGNAL_LEVEL;
900 assertEquals(NUM_SIGNAL_LEVEL - 1, stats.perRatTx[0].perLevel.length); in testWriteBandwidthStats()
909 for (int i = 0; i < NUM_SIGNAL_LEVEL - 1; i++) { in addBandwidthStats()