HomeSort by relevance Sort by last modified time
    Searched refs:ecioAsuLevel (Results 1 - 2 of 2) sorted by null

  /frameworks/base/telephony/java/android/telephony/
CellSignalStrengthCdma.java 146 int ecioAsuLevel;
156 if (cdmaEcio >= -90) ecioAsuLevel = 16;
157 else if (cdmaEcio >= -100) ecioAsuLevel = 8;
158 else if (cdmaEcio >= -115) ecioAsuLevel = 4;
159 else if (cdmaEcio >= -130) ecioAsuLevel = 2;
160 else if (cdmaEcio >= -150) ecioAsuLevel = 1;
161 else ecioAsuLevel = 99;
163 int level = (cdmaAsuLevel < ecioAsuLevel) ? cdmaAsuLevel : ecioAsuLevel;
SignalStrength.java 645 int ecioAsuLevel;
655 if (cdmaEcio >= -90) ecioAsuLevel = 16;
656 else if (cdmaEcio >= -100) ecioAsuLevel = 8;
657 else if (cdmaEcio >= -115) ecioAsuLevel = 4;
658 else if (cdmaEcio >= -130) ecioAsuLevel = 2;
659 else if (cdmaEcio >= -150) ecioAsuLevel = 1;
660 else ecioAsuLevel = 99;
662 int level = (cdmaAsuLevel < ecioAsuLevel) ? cdmaAsuLevel : ecioAsuLevel;

Completed in 45 milliseconds