Searched refs:clusterLow (Results 1 – 5 of 5) sorted by relevance
/packages/modules/Wifi/framework/java/android/net/wifi/aware/ |
D | ConfigRequest.java | 127 int clusterLow, int clusterHigh, int[] discoveryWindowInterval, in ConfigRequest() argument 132 mClusterLow = clusterLow; in ConfigRequest() 181 int clusterLow = in.readInt(); 186 return new ConfigRequest(support5gBand, support6gBand, masterPreference, clusterLow, 383 public Builder setClusterLow(int clusterLow) { in setClusterLow() argument 384 if (clusterLow < CLUSTER_ID_MIN) { in setClusterLow() 387 if (clusterLow > CLUSTER_ID_MAX) { in setClusterLow() 391 mClusterLow = clusterLow; in setClusterLow()
|
/packages/modules/Wifi/service/tests/wifitests/src/com/android/server/wifi/aware/ |
D | WifiAwareServiceImplTest.java | 266 int clusterLow = 15; in testConnectWithConfig() local 268 .setClusterLow(clusterLow) in testConnectWithConfig() 283 assertEquals(clusterLow, configRequestCaptor.getValue().mClusterLow); in testConnectWithConfig() 299 int clusterLow = 15; in testConnectWithManageNetworkSelectionPermission() local 304 .setClusterLow(clusterLow) in testConnectWithManageNetworkSelectionPermission() 328 assertNotEquals(clusterLow, configRequestCaptor.getValue().mClusterLow); in testConnectWithManageNetworkSelectionPermission()
|
D | WifiAwareStateManagerTest.java | 746 final int clusterLow = 5; in testAwareEventsDelivery() local 757 ConfigRequest configRequest = new ConfigRequest.Builder().setClusterLow(clusterLow) in testAwareEventsDelivery() 1948 final int clusterLow = 7; in testMultipleMessageSources() local 1965 ConfigRequest configRequest = new ConfigRequest.Builder().setClusterLow(clusterLow) in testMultipleMessageSources() 2052 final int clusterLow = 7; in testMessageWhilePeerChangesIdentity() local 2066 ConfigRequest configRequest = new ConfigRequest.Builder().setClusterLow(clusterLow) in testMessageWhilePeerChangesIdentity() 3347 final int clusterLow = 5; in testDisconnectWithPendingTransactions() local 3354 ConfigRequest configRequest = new ConfigRequest.Builder().setClusterLow(clusterLow) in testDisconnectWithPendingTransactions() 3429 final int clusterLow = 15; in testUnknownTransactionType() local 3435 ConfigRequest configRequest = new ConfigRequest.Builder().setClusterLow(clusterLow) in testUnknownTransactionType() [all …]
|
/packages/modules/Wifi/framework/tests/src/android/net/wifi/aware/ |
D | WifiAwareManagerTest.java | 676 final int clusterLow = 5; in testConfigRequestBuilder() local 685 .setClusterLow(clusterLow).setMasterPreference(masterPreference) in testConfigRequestBuilder() 696 collector.checkThat("mClusterLow", clusterLow, equalTo(configRequest.mClusterLow)); in testConfigRequestBuilder() 787 final int clusterLow = 25; in testConfigRequestParcel() local 797 .setClusterLow(clusterLow).setMasterPreference(masterPreference) in testConfigRequestParcel()
|
/packages/modules/Wifi/service/java/com/android/server/wifi/aware/ |
D | WifiAwareStateManager.java | 5535 int clusterLow = 0; in mergeConfigRequests() local 5545 clusterLow = configRequest.mClusterLow; in mergeConfigRequests() 5568 clusterLow = cr.mClusterLow; in mergeConfigRequests() 5571 if (clusterLow != cr.mClusterLow) return null; in mergeConfigRequests() 5597 .setMasterPreference(masterPreference).setClusterLow(clusterLow) in mergeConfigRequests()
|