Searched defs:clusterHigh (Results 1 - 2 of 2) sorted by path

/frameworks/base/wifi/java/android/net/wifi/nan/
H A DConfigRequest.java77 int clusterHigh) {
81 mClusterHigh = clusterHigh;
115 int clusterHigh = in.readInt();
116 return new ConfigRequest(support5gBand, masterPreference, clusterLow, clusterHigh);
233 * @param clusterHigh The upper range of the generated cluster ID.
237 public Builder setClusterHigh(int clusterHigh) { argument
238 if (clusterHigh < CLUSTER_ID_MIN) {
241 if (clusterHigh > CLUSTER_ID_MAX) {
245 mClusterHigh = clusterHigh;
76 ConfigRequest(boolean support5gBand, int masterPreference, int clusterLow, int clusterHigh) argument
/frameworks/opt/net/wifi/tests/wifitests/src/com/android/server/wifi/nan/
H A DWifiNanHalTest.java81 final int clusterHigh = 126;
85 testEnable(transactionId, clusterLow, clusterHigh, masterPref, enable5g);
92 final int clusterHigh = 197;
96 testEnable(transactionId, clusterLow, clusterHigh, masterPref, enable5g);
594 private void testEnable(short transactionId, int clusterLow, int clusterHigh, int masterPref, argument
597 .setClusterHigh(clusterHigh).setMasterPreference(masterPref)
608 collector.checkThat("cluster_high", argsData.getInt("cluster_high"), equalTo(clusterHigh));

Completed in 46 milliseconds