Searched refs:allowedClientList (Results 1 – 3 of 3) sorted by relevance
965 ArrayList<MacAddress> allowedClientList = new ArrayList<>(); in testResetToDefaultForUnsupportedConfig() local967 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() local992 assertEquals(resetedConfig.getAllowedClientList(), allowedClientList); in testResetToDefaultForUnsupportedConfig() local1001 assertEquals(resetedConfig.getAllowedClientList(), allowedClientList); in testResetToDefaultForUnsupportedConfig() local
1294 ArrayList<MacAddress> allowedClientList = new ArrayList<>(); in testClientConnectedAfterUpdateToAllowListwhenClientAuthorizationEnabled() local1326 allowedClientList.add(TEST_CLIENT_MAC_ADDRESS); in testClientConnectedAfterUpdateToAllowListwhenClientAuthorizationEnabled()1327 configBuilder.setAllowedClientList(allowedClientList); in testClientConnectedAfterUpdateToAllowListwhenClientAuthorizationEnabled()1402 ArrayList<MacAddress> allowedClientList = new ArrayList<>(); in testConfigChangeToSmallAndClientAddBlockListCauseClientDisconnect() local1403 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()
1383 public Builder setAllowedClientList(@NonNull List<MacAddress> allowedClientList) { in setAllowedClientList() argument1384 mAllowedClientList = new ArrayList<>(allowedClientList); in setAllowedClientList()