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

  /frameworks/base/wifi/java/android/net/wifi/aware/
ConfigRequest.java 84 private ConfigRequest(boolean support5gBand, int masterPreference, int clusterLow,
88 mClusterLow = clusterLow;
125 int clusterLow = in.readInt();
129 return new ConfigRequest(support5gBand, masterPreference, clusterLow, clusterHigh,
266 * @param clusterLow The lower range of the generated cluster ID.
271 public Builder setClusterLow(int clusterLow) {
272 if (clusterLow < CLUSTER_ID_MIN) {
275 if (clusterLow > CLUSTER_ID_MAX) {
279 mClusterLow = clusterLow;
  /frameworks/base/wifi/tests/src/android/net/wifi/aware/
WifiAwareManagerTest.java 584 final int clusterLow = 5;
590 .setClusterLow(clusterLow).setMasterPreference(masterPreference)
596 collector.checkThat("mClusterLow", clusterLow, equalTo(configRequest.mClusterLow));
681 final int clusterLow = 25;
688 .setClusterLow(clusterLow).setMasterPreference(masterPreference)
    [all...]
  /frameworks/opt/net/wifi/tests/wifitests/src/com/android/server/wifi/aware/
WifiAwareStateManagerTest.java 567 final int clusterLow = 5;
577 ConfigRequest configRequest = new ConfigRequest.Builder().setClusterLow(clusterLow)
    [all...]
  /frameworks/opt/net/wifi/service/java/com/android/server/wifi/aware/
WifiAwareStateManager.java     [all...]

Completed in 1020 milliseconds