Home | History | Annotate | Download | only in wifi

Lines Matching refs:AccessPoint

27 * Build and return a valid AccessPoint.
29 * Only intended for testing the AccessPoint class;
39 private int mRssi = AccessPoint.UNREACHABLE_RSSI;
54 public AccessPoint build() {
60 bundle.putString(AccessPoint.KEY_SSID, ssid);
61 bundle.putParcelable(AccessPoint.KEY_CONFIG, wifiConfig);
62 bundle.putParcelable(AccessPoint.KEY_NETWORKINFO, mNetworkInfo);
63 bundle.putParcelable(AccessPoint.KEY_WIFIINFO, mWifiInfo);
65 bundle.putString(AccessPoint.KEY_FQDN, mFqdn);
68 bundle.putString(AccessPoint.KEY_PROVIDER_FRIENDLY_NAME, mProviderFriendlyName);
70 AccessPoint ap = new AccessPoint(mContext, bundle);
91 * <p>Side effect: if this AccessPoint was previously unreachable,
98 } else if (level >= AccessPoint.SIGNAL_LEVELS) {
102 float outputRange = AccessPoint.SIGNAL_LEVELS - 1;
119 * Set whether the AccessPoint is reachable.
121 * making an AccessPoint reachable will set the signal to the minimum level.
126 if (mRssi == AccessPoint.UNREACHABLE_RSSI) {
130 mRssi = AccessPoint.UNREACHABLE_RSSI;
168 * AccessPoint a saved network.