HomeSort by relevance Sort by last modified time
    Searched refs:maxApForDistance (Results 1 - 3 of 3) sorted by null

  /frameworks/base/wifi/java/android/net/wifi/
BatchedScanSettings.java 88 public int maxApForDistance;
99 maxApForDistance = UNSPECIFIED;
109 maxApForDistance = source.maxApForDistance;
133 if (maxApForDistance != UNSPECIFIED && (maxApForDistance < MIN_AP_FOR_DISTANCE ||
134 maxApForDistance > MAX_AP_FOR_DISTANCE)) return true;
164 if (maxApForDistance == UNSPECIFIED) {
165 maxApForDistance = DEFAULT_AP_FOR_DISTANCE;
166 } else if (maxApForDistance < MIN_AP_FOR_DISTANCE)
    [all...]
WifiNative.java 316 if (settings.maxApForDistance != BatchedScanSettings.UNSPECIFIED) {
317 cmd += " RTT=" + settings.maxApForDistance;
  /frameworks/base/services/java/com/android/server/wifi/
WifiService.java 494 if (s.maxApForDistance != BatchedScanSettings.UNSPECIFIED &&
495 (setting.maxApForDistance == BatchedScanSettings.UNSPECIFIED ||
496 s.maxApForDistance > setting.maxApForDistance)) {
497 setting.maxApForDistance = s.maxApForDistance;
    [all...]

Completed in 124 milliseconds