OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:ecioAsuLevel
(Results
1 - 2
of
2
) sorted by null
/frameworks/base/telephony/java/android/telephony/
CellSignalStrengthCdma.java
147
int
ecioAsuLevel
;
157
if (cdmaEcio >= -90)
ecioAsuLevel
= 16;
158
else if (cdmaEcio >= -100)
ecioAsuLevel
= 8;
159
else if (cdmaEcio >= -115)
ecioAsuLevel
= 4;
160
else if (cdmaEcio >= -130)
ecioAsuLevel
= 2;
161
else if (cdmaEcio >= -150)
ecioAsuLevel
= 1;
162
else
ecioAsuLevel
= 99;
164
int level = (cdmaAsuLevel <
ecioAsuLevel
) ? cdmaAsuLevel :
ecioAsuLevel
;
SignalStrength.java
646
int
ecioAsuLevel
;
656
if (cdmaEcio >= -90)
ecioAsuLevel
= 16;
657
else if (cdmaEcio >= -100)
ecioAsuLevel
= 8;
658
else if (cdmaEcio >= -115)
ecioAsuLevel
= 4;
659
else if (cdmaEcio >= -130)
ecioAsuLevel
= 2;
660
else if (cdmaEcio >= -150)
ecioAsuLevel
= 1;
661
else
ecioAsuLevel
= 99;
663
int level = (cdmaAsuLevel <
ecioAsuLevel
) ? cdmaAsuLevel :
ecioAsuLevel
;
Completed in 217 milliseconds