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.java1177 ArrayList<MacAddress> allowedClientList = new ArrayList<>(); in testResetToDefaultForUnsupportedConfig() local
1179 allowedClientList.add(MacAddress.fromString("aa:bb:cc:dd:ee:ff")); in testResetToDefaultForUnsupportedConfig()
1181 configBuilder.setAllowedClientList(allowedClientList); in testResetToDefaultForUnsupportedConfig()
1189 assertEquals(resetedConfig.getAllowedClientList(), allowedClientList); in testResetToDefaultForUnsupportedConfig() local
1204 assertEquals(resetedConfig.getAllowedClientList(), allowedClientList); in testResetToDefaultForUnsupportedConfig() local
1213 assertEquals(resetedConfig.getAllowedClientList(), allowedClientList); in testResetToDefaultForUnsupportedConfig() local
DSoftApManagerTest.java1791 ArrayList<MacAddress> allowedClientList = new ArrayList<>(); in testClientConnectedAfterUpdateToAllowListwhenClientAuthorizationEnabled() local
1820 allowedClientList.add(TEST_CLIENT_MAC_ADDRESS); in testClientConnectedAfterUpdateToAllowListwhenClientAuthorizationEnabled()
1821 configBuilder.setAllowedClientList(allowedClientList); in testClientConnectedAfterUpdateToAllowListwhenClientAuthorizationEnabled()
1893 ArrayList<MacAddress> allowedClientList = new ArrayList<>(); in testConfigChangeToSmallAndClientAddBlockListCauseClientDisconnect() local
1894 allowedClientList.add(TEST_CLIENT_MAC_ADDRESS); in testConfigChangeToSmallAndClientAddBlockListCauseClientDisconnect()
1895 allowedClientList.add(TEST_CLIENT_MAC_ADDRESS_2); in testConfigChangeToSmallAndClientAddBlockListCauseClientDisconnect()
1903 configBuilder.setAllowedClientList(allowedClientList); in testConfigChangeToSmallAndClientAddBlockListCauseClientDisconnect()
1932 allowedClientList.clear(); in testConfigChangeToSmallAndClientAddBlockListCauseClientDisconnect()
1933 allowedClientList.add(TEST_CLIENT_MAC_ADDRESS_2); in testConfigChangeToSmallAndClientAddBlockListCauseClientDisconnect()
1937 configBuilder.setAllowedClientList(allowedClientList); in testConfigChangeToSmallAndClientAddBlockListCauseClientDisconnect()
/packages/modules/Wifi/framework/java/android/net/wifi/
DSoftApConfiguration.java2081 public Builder setAllowedClientList(@NonNull List<MacAddress> allowedClientList) { in setAllowedClientList() argument
2082 mAllowedClientList = new ArrayList<>(allowedClientList); in setAllowedClientList()