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...]
  /frameworks/opt/net/wifi/service/java/com/android/server/wifi/
WifiServiceImpl.java 582 if (s.maxApForDistance != BatchedScanSettings.UNSPECIFIED &&
583 (setting.maxApForDistance == BatchedScanSettings.UNSPECIFIED ||
584 s.maxApForDistance > setting.maxApForDistance)) {
585 setting.maxApForDistance = s.maxApForDistance;
    [all...]
WifiNative.java 427 if (settings.maxApForDistance != BatchedScanSettings.UNSPECIFIED) {
428 cmd += " RTT=" + settings.maxApForDistance;
    [all...]

Completed in 61 milliseconds