Home | History | Annotate | Download | only in wifi

Lines Matching defs:AccessPoint

62 public class AccessPoint implements Comparable<AccessPoint> {
63 static final String TAG = "SettingsLib.AccessPoint";
154 // used to co-relate internal vs returned accesspoint.
164 public AccessPoint(Context context, Bundle savedState) {
203 public AccessPoint(Context context, WifiConfiguration config) {
210 * Initialize an AccessPoint object for a {@link PasspointConfiguration}. This is mainly
213 public AccessPoint(Context context, PasspointConfiguration config) {
220 AccessPoint(Context context, AccessPoint other) {
225 AccessPoint(Context context, ScanResult result) {
232 * Copy accesspoint information. NOTE: We do not copy tag information because that is never
236 void copyFrom(AccessPoint that) {
257 * Returns a negative integer, zero, or a positive integer if this AccessPoint is less than,
258 * equal to, or greater than the other AccessPoint.
272 public int compareTo(@NonNull AccessPoint other) {
302 if (!(other instanceof AccessPoint)) return false;
303 return (this.compareTo((AccessPoint) other) == 0);
318 StringBuilder builder = new StringBuilder().append("AccessPoint(")
352 * Updates the AccessPoint rankingScore, metering, and badge, returning true if the data has
367 * Updates the AccessPoint rankingScore and badge, returning true if the data has changed.
393 * Updates the AccessPoint's metering based on {@link ScoredNetwork#meteredHint}, returning
454 * <p>Use {@#isReachable()} to determine if an AccessPoint is in range, as this method will
469 * If the given AccessPoint is not active, a value will be calculated from previous scan
874 * Return true if this AccessPoint represents a Passpoint AP.
881 * Return true if this AccessPoint represents a Passpoint provider configuration.
928 mConfig.SSID = AccessPoint.convertToQuotedString(ssid);
1003 /** Attempt to update the AccessPoint and return true if an update occurred. */
1048 setRssi(AccessPoint.UNREACHABLE_RSSI);
1201 void onAccessPointChanged(AccessPoint accessPoint);
1202 void onLevelChanged(AccessPoint accessPoint);