Home
last modified time | relevance | path

Searched refs:allowedClientList (Results 1 – 3 of 3) sorted by relevance

/aosp12/packages/modules/Wifi/service/tests/wifitests/src/com/android/server/wifi/
H A DWifiApConfigStoreTest.java965 ArrayList<MacAddress> allowedClientList = new ArrayList<>(); in testResetToDefaultForUnsupportedConfig() local
967 allowedClientList.add(MacAddress.fromString("aa:bb:cc:dd:ee:ff")); in testResetToDefaultForUnsupportedConfig()
969 configBuilder.setAllowedClientList(allowedClientList); in testResetToDefaultForUnsupportedConfig()
977 assertEquals(resetedConfig.getAllowedClientList(), allowedClientList); in testResetToDefaultForUnsupportedConfig() local
992 assertEquals(resetedConfig.getAllowedClientList(), allowedClientList); in testResetToDefaultForUnsupportedConfig() local
1001 assertEquals(resetedConfig.getAllowedClientList(), allowedClientList); in testResetToDefaultForUnsupportedConfig() local
H A DSoftApManagerTest.java1294 ArrayList<MacAddress> allowedClientList = new ArrayList<>(); in testClientConnectedAfterUpdateToAllowListwhenClientAuthorizationEnabled() local
1326 allowedClientList.add(TEST_CLIENT_MAC_ADDRESS); in testClientConnectedAfterUpdateToAllowListwhenClientAuthorizationEnabled()
1327 configBuilder.setAllowedClientList(allowedClientList); in testClientConnectedAfterUpdateToAllowListwhenClientAuthorizationEnabled()
1402 ArrayList<MacAddress> allowedClientList = new ArrayList<>(); in testConfigChangeToSmallAndClientAddBlockListCauseClientDisconnect() local
1403 allowedClientList.add(TEST_CLIENT_MAC_ADDRESS); in testConfigChangeToSmallAndClientAddBlockListCauseClientDisconnect()
1404 allowedClientList.add(TEST_CLIENT_MAC_ADDRESS_2); in testConfigChangeToSmallAndClientAddBlockListCauseClientDisconnect()
1412 configBuilder.setAllowedClientList(allowedClientList); in testConfigChangeToSmallAndClientAddBlockListCauseClientDisconnect()
1443 allowedClientList.clear(); in testConfigChangeToSmallAndClientAddBlockListCauseClientDisconnect()
1444 allowedClientList.add(TEST_CLIENT_MAC_ADDRESS_2); in testConfigChangeToSmallAndClientAddBlockListCauseClientDisconnect()
1448 configBuilder.setAllowedClientList(allowedClientList); in testConfigChangeToSmallAndClientAddBlockListCauseClientDisconnect()
/aosp12/packages/modules/Wifi/framework/java/android/net/wifi/
H A DSoftApConfiguration.java1383 public Builder setAllowedClientList(@NonNull List<MacAddress> allowedClientList) { in setAllowedClientList() argument
1384 mAllowedClientList = new ArrayList<>(allowedClientList); in setAllowedClientList()