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 317 if (settings.maxApForDistance != BatchedScanSettings.UNSPECIFIED) {
318 cmd += " RTT=" + settings.maxApForDistance;
  /frameworks/base/services/java/com/android/server/wifi/
WifiService.java 532 if (s.maxApForDistance != BatchedScanSettings.UNSPECIFIED &&
533 (setting.maxApForDistance == BatchedScanSettings.UNSPECIFIED ||
534 s.maxApForDistance > setting.maxApForDistance)) {
535 setting.maxApForDistance = s.maxApForDistance;
    [all...]

Completed in 470 milliseconds