Home
last modified time | relevance | path

Searched refs:clusterLow (Results 1 – 4 of 4) sorted by relevance

/packages/modules/Wifi/framework/java/android/net/wifi/aware/
DConfigRequest.java91 int clusterLow, int clusterHigh, int[] discoveryWindowInterval) { in ConfigRequest() argument
95 mClusterLow = clusterLow; in ConfigRequest()
136 int clusterLow = in.readInt();
140 return new ConfigRequest(support5gBand, support6gBand, masterPreference, clusterLow,
305 public Builder setClusterLow(int clusterLow) { in setClusterLow() argument
306 if (clusterLow < CLUSTER_ID_MIN) { in setClusterLow()
309 if (clusterLow > CLUSTER_ID_MAX) { in setClusterLow()
313 mClusterLow = clusterLow; in setClusterLow()
/packages/modules/Wifi/framework/tests/src/android/net/wifi/aware/
DWifiAwareManagerTest.java645 final int clusterLow = 5; in testConfigRequestBuilder() local
653 .setClusterLow(clusterLow).setMasterPreference(masterPreference) in testConfigRequestBuilder()
661 collector.checkThat("mClusterLow", clusterLow, equalTo(configRequest.mClusterLow)); in testConfigRequestBuilder()
749 final int clusterLow = 25; in testConfigRequestParcel() local
758 .setClusterLow(clusterLow).setMasterPreference(masterPreference) in testConfigRequestParcel()
/packages/modules/Wifi/service/tests/wifitests/src/com/android/server/wifi/aware/
DWifiAwareStateManagerTest.java582 final int clusterLow = 5; in testAwareEventsDelivery() local
593 ConfigRequest configRequest = new ConfigRequest.Builder().setClusterLow(clusterLow) in testAwareEventsDelivery()
1534 final int clusterLow = 7; in testMultipleMessageSources() local
1551 ConfigRequest configRequest = new ConfigRequest.Builder().setClusterLow(clusterLow) in testMultipleMessageSources()
1638 final int clusterLow = 7; in testMessageWhilePeerChangesIdentity() local
1652 ConfigRequest configRequest = new ConfigRequest.Builder().setClusterLow(clusterLow) in testMessageWhilePeerChangesIdentity()
2887 final int clusterLow = 5; in testDisconnectWithPendingTransactions() local
2894 ConfigRequest configRequest = new ConfigRequest.Builder().setClusterLow(clusterLow) in testDisconnectWithPendingTransactions()
2963 final int clusterLow = 15; in testUnknownTransactionType() local
2969 ConfigRequest configRequest = new ConfigRequest.Builder().setClusterLow(clusterLow) in testUnknownTransactionType()
/packages/modules/Wifi/service/java/com/android/server/wifi/aware/
DWifiAwareStateManager.java3381 int clusterLow = 0; in mergeConfigRequests() local
3390 clusterLow = configRequest.mClusterLow; in mergeConfigRequests()
3413 clusterLow = cr.mClusterLow; in mergeConfigRequests()
3416 if (clusterLow != cr.mClusterLow) return null; in mergeConfigRequests()
3438 .setMasterPreference(masterPreference).setClusterLow(clusterLow) in mergeConfigRequests()