HomeSort by relevance Sort by last modified time
    Searched full:threshrsrp (Results 1 - 1 of 1) sorted by null

  /frameworks/base/telephony/java/android/telephony/
SignalStrength.java 756 int[] threshRsrp;
758 threshRsrp = RSRP_THRESH_STRICT;
760 threshRsrp = RSRP_THRESH_LENIENT;
763 if (mLteRsrp > threshRsrp[5]) rsrpIconLevel = -1;
764 else if (mLteRsrp >= threshRsrp[4]) rsrpIconLevel = SIGNAL_STRENGTH_GREAT;
765 else if (mLteRsrp >= threshRsrp[3]) rsrpIconLevel = SIGNAL_STRENGTH_GOOD;
766 else if (mLteRsrp >= threshRsrp[2]) rsrpIconLevel = SIGNAL_STRENGTH_MODERATE;
767 else if (mLteRsrp >= threshRsrp[1]) rsrpIconLevel = SIGNAL_STRENGTH_POOR;
768 else if (mLteRsrp >= threshRsrp[0]) rsrpIconLevel = SIGNAL_STRENGTH_NONE_OR_UNKNOWN;

Completed in 101 milliseconds