Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit f6a1a0c8 authored by Amit Mahajan's avatar Amit Mahajan Committed by android-build-merger
Browse files

Merge "Make getEcno() public."

am: caa960b7

Change-Id: I4ba83060abc48551046d42c2bc6f94db2de436e4
parents 4d4d2b36 caa960b7
Loading
Loading
Loading
Loading
+1 −0
Original line number Original line Diff line number Diff line
@@ -44439,6 +44439,7 @@ package android.telephony {
    method public int describeContents();
    method public int describeContents();
    method public int getAsuLevel();
    method public int getAsuLevel();
    method public int getDbm();
    method public int getDbm();
    method public int getEcNo();
    method @IntRange(from=android.telephony.CellSignalStrength.SIGNAL_STRENGTH_NONE_OR_UNKNOWN, to=android.telephony.CellSignalStrength.SIGNAL_STRENGTH_GREAT) public int getLevel();
    method @IntRange(from=android.telephony.CellSignalStrength.SIGNAL_STRENGTH_NONE_OR_UNKNOWN, to=android.telephony.CellSignalStrength.SIGNAL_STRENGTH_GREAT) public int getLevel();
    method public void writeToParcel(android.os.Parcel, int);
    method public void writeToParcel(android.os.Parcel, int);
    field @NonNull public static final android.os.Parcelable.Creator<android.telephony.CellSignalStrengthWcdma> CREATOR;
    field @NonNull public static final android.os.Parcelable.Creator<android.telephony.CellSignalStrengthWcdma> CREATOR;
+5 −2
Original line number Original line Diff line number Diff line
@@ -245,9 +245,12 @@ public final class CellSignalStrengthWcdma extends CellSignalStrength implements
    }
    }


    /**
    /**
     * Get the Ec/No as dB
     * Get the Ec/No (Energy per chip over the noise spectral density) as dB.
     *
     *
     * @hide
     * Reference: TS 25.133 Section 9.1.2.3
     *
     * @return the Ec/No of the measured cell in the range [-24, 1] or
     * {@link android.telephony.CellInfo#UNAVAILABLE UNAVAILABLE} if unavailable
     */
     */
    public int getEcNo() {
    public int getEcNo() {
        return mEcNo;
        return mEcNo;