OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:cdmaEcio
(Results
1 - 4
of
4
) sorted by null
/frameworks/base/telephony/java/android/telephony/
SignalStrength.java
113
int cdmaDbm, int
cdmaEcio
,
120
mCdmaEcio =
cdmaEcio
;
138
int cdmaDbm, int
cdmaEcio
,
141
this(gsmSignalStrength, gsmBitErrorRate, cdmaDbm,
cdmaEcio
,
445
final int
cdmaEcio
= getCdmaEcio();
456
if (
cdmaEcio
>= -90) levelEcio = SIGNAL_STRENGTH_GREAT;
457
else if (
cdmaEcio
>= -110) levelEcio = SIGNAL_STRENGTH_GOOD;
458
else if (
cdmaEcio
>= -130) levelEcio = SIGNAL_STRENGTH_MODERATE;
459
else if (
cdmaEcio
>= -150) levelEcio = SIGNAL_STRENGTH_POOR;
474
final int
cdmaEcio
= getCdmaEcio()
[
all
...]
/frameworks/base/telephony/java/com/android/internal/telephony/cdma/
CdmaLteServiceStateTracker.java
466
int
cdmaEcio
= (ints[offset + 1] > 0) ? -ints[offset + 1] : -160;
481
mSignalStrength = new SignalStrength(99, -1, cdmaDbm,
cdmaEcio
, evdoRssi, evdoEcio,
484
mSignalStrength = new SignalStrength(99, -1, cdmaDbm,
cdmaEcio
, evdoRssi, evdoEcio,
CdmaServiceStateTracker.java
[
all
...]
/packages/apps/Phone/src/com/android/phone/
BluetoothHandsfree.java
807
int
cdmaEcio
= signalStrength.getCdmaEcio();
816
if (
cdmaEcio
>= -90) levelEcio = 4;
817
else if (
cdmaEcio
>= -110) levelEcio = 3;
818
else if (
cdmaEcio
>= -130) levelEcio = 2;
819
else if (
cdmaEcio
>= -150) levelEcio = 1;
[
all
...]
Completed in 2063 milliseconds