Home | History | Annotate | Download | only in wifi

Lines Matching refs:mRssi

141     private int mRssi = UNREACHABLE_RSSI;
244 this.mRssi = that.mRssi;
291 int difference = WifiManager.calculateSignalLevel(other.mRssi, SIGNAL_LEVELS)
292 - WifiManager.calculateSignalLevel(mRssi, SIGNAL_LEVELS);
310 result += 19 * mRssi;
338 builder.append(",mRssi=").append(mRssi);
458 return WifiManager.calculateSignalLevel(mRssi, SIGNAL_LEVELS);
462 return mRssi;
466 * Updates {@link #mRssi}.
468 * <p>If the given connection is active, the existing value of {@link #mRssi
490 if (rssi != UNREACHABLE_RSSI && mRssi != UNREACHABLE_RSSI) {
491 mRssi = (mRssi + rssi) / 2; // half-life previous value
493 mRssi = rssi;
1009 if (mRssi != info.getRssi()) {
1010 mRssi = info.getRssi();
1043 mRssi = rssi;
1061 return mRssi != UNREACHABLE_RSSI;