Home
last modified time | relevance | path

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

/packages/modules/Wifi/service/tests/wifitests/src/com/android/server/wifi/
DWifiApConfigStoreTest.java1135 ArrayList<MacAddress> allowedClientList = new ArrayList<>(); in testResetToDefaultForUnsupportedConfig() local
1137 allowedClientList.add(MacAddress.fromString("aa:bb:cc:dd:ee:ff")); in testResetToDefaultForUnsupportedConfig()
1139 configBuilder.setAllowedClientList(allowedClientList); in testResetToDefaultForUnsupportedConfig()
1147 assertEquals(resetedConfig.getAllowedClientList(), allowedClientList); in testResetToDefaultForUnsupportedConfig() local
1162 assertEquals(resetedConfig.getAllowedClientList(), allowedClientList); in testResetToDefaultForUnsupportedConfig() local
1171 assertEquals(resetedConfig.getAllowedClientList(), allowedClientList); in testResetToDefaultForUnsupportedConfig() local
DSoftApManagerTest.java1432 ArrayList<MacAddress> allowedClientList = new ArrayList<>(); in testClientConnectedAfterUpdateToAllowListwhenClientAuthorizationEnabled() local
1460 allowedClientList.add(TEST_CLIENT_MAC_ADDRESS); in testClientConnectedAfterUpdateToAllowListwhenClientAuthorizationEnabled()
1461 configBuilder.setAllowedClientList(allowedClientList); in testClientConnectedAfterUpdateToAllowListwhenClientAuthorizationEnabled()
1532 ArrayList<MacAddress> allowedClientList = new ArrayList<>(); in testConfigChangeToSmallAndClientAddBlockListCauseClientDisconnect() local
1533 allowedClientList.add(TEST_CLIENT_MAC_ADDRESS); in testConfigChangeToSmallAndClientAddBlockListCauseClientDisconnect()
1534 allowedClientList.add(TEST_CLIENT_MAC_ADDRESS_2); in testConfigChangeToSmallAndClientAddBlockListCauseClientDisconnect()
1542 configBuilder.setAllowedClientList(allowedClientList); in testConfigChangeToSmallAndClientAddBlockListCauseClientDisconnect()
1570 allowedClientList.clear(); in testConfigChangeToSmallAndClientAddBlockListCauseClientDisconnect()
1571 allowedClientList.add(TEST_CLIENT_MAC_ADDRESS_2); in testConfigChangeToSmallAndClientAddBlockListCauseClientDisconnect()
1575 configBuilder.setAllowedClientList(allowedClientList); in testConfigChangeToSmallAndClientAddBlockListCauseClientDisconnect()
/packages/modules/Wifi/framework/java/android/net/wifi/
DSoftApConfiguration.java1970 public Builder setAllowedClientList(@NonNull List<MacAddress> allowedClientList) { in setAllowedClientList() argument
1971 mAllowedClientList = new ArrayList<>(allowedClientList); in setAllowedClientList()