Home
last modified time | relevance | path

Searched refs:allowedGroupCiphers (Results 1 – 17 of 17) sorted by relevance

/frameworks/base/core/tests/ConnectivityManagerTest/src/com/android/connectivitymanagertest/functional/
DWifiAssociationTest.java93 config.allowedGroupCiphers.set(GroupCipher.WEP40); in getConfig()
100 config.allowedGroupCiphers.set(GroupCipher.WEP104); in getConfig()
108 config.allowedGroupCiphers.set(GroupCipher.TKIP); in getConfig()
116 config.allowedGroupCiphers.set(GroupCipher.CCMP); in getConfig()
/frameworks/opt/net/wifi/tests/wifitests/src/com/android/server/wifi/
DWifiBackupRestoreTest.java345 config.allowedGroupCiphers.set(WifiConfiguration.GroupCipher.WEP40); in createNetworkForConfigurationWithUnsupportedTag()
346 config.allowedGroupCiphers.set(WifiConfiguration.GroupCipher.WEP104); in createNetworkForConfigurationWithUnsupportedTag()
347 config.allowedGroupCiphers.set(WifiConfiguration.GroupCipher.TKIP); in createNetworkForConfigurationWithUnsupportedTag()
348 config.allowedGroupCiphers.set(WifiConfiguration.GroupCipher.CCMP); in createNetworkForConfigurationWithUnsupportedTag()
398 config.allowedGroupCiphers.set(WifiConfiguration.GroupCipher.WEP40); in createNetworkForConfigurationWithUnsupportedValuesInBitsetsInRestore()
399 config.allowedGroupCiphers.set(WifiConfiguration.GroupCipher.WEP104); in createNetworkForConfigurationWithUnsupportedValuesInBitsetsInRestore()
400 config.allowedGroupCiphers.set(WifiConfiguration.GroupCipher.TKIP); in createNetworkForConfigurationWithUnsupportedValuesInBitsetsInRestore()
401 config.allowedGroupCiphers.set(WifiConfiguration.GroupCipher.CCMP); in createNetworkForConfigurationWithUnsupportedValuesInBitsetsInRestore()
976 config.allowedGroupCiphers.set(WifiConfiguration.GroupCipher.WEP40); in createNetworkForConfigurationWithV1_0Data()
977 config.allowedGroupCiphers.set(WifiConfiguration.GroupCipher.WEP104); in createNetworkForConfigurationWithV1_0Data()
[all …]
DWifiConfigurationTestUtil.java559 assertEquals(expected.allowedGroupCiphers, actual.allowedGroupCiphers); in assertCommonConfigurationElementsEqual()
660 assertEquals(expected.allowedGroupCiphers, actual.allowedGroupCiphers); in assertConfigurationEqualForSupplicant()
DWifiConfigManagerTest.java1441 network.allowedGroupCiphers.clear(); in testUpdateSingleNetworkWithNullValues()
1831 assertTrue(pskNetwork.allowedGroupCiphers.get(WifiConfiguration.GroupCipher.WEP104)); in testUpdateAllowedGroupCiphersClearsHasEverConnected()
1832 pskNetwork.allowedGroupCiphers.clear(WifiConfiguration.GroupCipher.WEP104); in testUpdateAllowedGroupCiphersClearsHasEverConnected()
4635 if (configuration.allowedGroupCiphers.isEmpty()) { in setDefaults()
4636 configuration.allowedGroupCiphers.set(WifiConfiguration.GroupCipher.CCMP); in setDefaults()
4637 configuration.allowedGroupCiphers.set(WifiConfiguration.GroupCipher.TKIP); in setDefaults()
4638 configuration.allowedGroupCiphers.set(WifiConfiguration.GroupCipher.WEP40); in setDefaults()
4639 configuration.allowedGroupCiphers.set(WifiConfiguration.GroupCipher.WEP104); in setDefaults()
DWifiConfigurationUtilTest.java537 config.allowedGroupCiphers.set(WifiConfiguration.GroupCipher.GTK_NOT_USED + 2); in testValidateNegativeCases_InvalidGroupCipher()
DWifiMetricsTest.java2359 config.allowedGroupCiphers = intToBitSet(TEST_ALLOWED_GROUP_CIPHERS); in createComplexWifiConfig()
2377 assertEquals(config.allowedGroupCiphers, intToBitSet(info.allowedGroupCiphers)); in assertConfigInfoEqualsWifiConfig()
/frameworks/opt/net/wifi/service/java/com/android/server/wifi/
DWifiBackupDataV1Parser.java244 if (config.allowedGroupCiphers.length() in clearAnyKnownIssuesInParsedConfiguration()
246 config.allowedGroupCiphers.clear( in clearAnyKnownIssuesInParsedConfiguration()
248 config.allowedGroupCiphers.length()); in clearAnyKnownIssuesInParsedConfiguration()
334 byte[] allowedGroupCiphers = (byte[]) value; in parseWifiConfigurationFromXmlInternal()
335 configuration.allowedGroupCiphers = BitSet.valueOf(allowedGroupCiphers); in parseWifiConfigurationFromXmlInternal()
DWifiConfigurationUtil.java409 if (!Objects.equals(existingConfig.allowedGroupCiphers, in hasCredentialChanged()
410 newConfig.allowedGroupCiphers)) { in hasCredentialChanged()
607 if (!validateBitSet(config.allowedGroupCiphers, in validateBitSets()
610 + config.allowedGroupCiphers); in validateBitSets()
DWifiConfigManager.java991 if (externalConfig.allowedGroupCiphers != null in mergeWithInternalWifiConfiguration()
992 && !externalConfig.allowedGroupCiphers.isEmpty()) { in mergeWithInternalWifiConfiguration()
993 internalConfig.allowedGroupCiphers = in mergeWithInternalWifiConfiguration()
994 (BitSet) externalConfig.allowedGroupCiphers.clone(); in mergeWithInternalWifiConfiguration()
1057 configuration.allowedGroupCiphers.set(WifiConfiguration.GroupCipher.CCMP); in setDefaultsInWifiConfiguration()
1058 configuration.allowedGroupCiphers.set(WifiConfiguration.GroupCipher.TKIP); in setDefaultsInWifiConfiguration()
1059 configuration.allowedGroupCiphers.set(WifiConfiguration.GroupCipher.WEP40); in setDefaultsInWifiConfiguration()
1060 configuration.allowedGroupCiphers.set(WifiConfiguration.GroupCipher.WEP104); in setDefaultsInWifiConfiguration()
DSupplicantStaNetworkHal.java235 config.allowedGroupCiphers = in loadWifiConfiguration()
389 if (config.allowedGroupCiphers.cardinality() != 0 in saveWifiConfiguration()
391 config.allowedGroupCiphers)))) { in saveWifiConfiguration()
553 if (config.allowedGroupCiphers.cardinality() != 0 in saveSuiteBConfig()
555 config.allowedGroupCiphers))) { in saveSuiteBConfig()
DWifiMetrics.java3699 info.allowedGroupCiphers = bitSetToInt(config.allowedGroupCiphers); in createConfigInfo()
3939 .append(" allowed_group_ciphers=").append(info.allowedGroupCiphers) in configInfoToString()
/frameworks/base/wifi/java/android/net/wifi/
DWifiConfiguration.java388 allowedGroupCiphers.clear(); in setSecurityParams()
414 allowedGroupCiphers.set(WifiConfiguration.GroupCipher.GCMP_256); in setSecurityParams()
593 public BitSet allowedGroupCiphers; field in WifiConfiguration
1771 allowedGroupCiphers = new BitSet(); in WifiConfiguration()
1959 for (int gc = 0; gc < this.allowedGroupCiphers.size(); gc++) { in toString()
1960 if (this.allowedGroupCiphers.get(gc)) { in toString()
2391 allowedGroupCiphers = (BitSet) source.allowedGroupCiphers.clone(); in WifiConfiguration()
2476 writeBitSet(dest, allowedGroupCiphers); in writeToParcel()
2550 config.allowedGroupCiphers = readBitSet(in);
/frameworks/opt/net/wifi/service/java/com/android/server/wifi/util/
DXmlUtil.java408 configuration.allowedGroupCiphers.toByteArray()); in writeCommonElementsToXml()
569 byte[] allowedGroupCiphers = (byte[]) value; in parseFromXml()
570 configuration.allowedGroupCiphers = BitSet.valueOf(allowedGroupCiphers); in parseFromXml()
/frameworks/opt/net/wifi/tests/wifitests/src/com/android/server/wifi/util/
DXmlUtilTest.java193 configuration.allowedGroupCiphers.set(WifiConfiguration.GroupCipher.WEP104); in testEapWifiConfigurationSerializeDeserializeForConfigStore()
194 configuration.allowedGroupCiphers.set(WifiConfiguration.GroupCipher.WEP40); in testEapWifiConfigurationSerializeDeserializeForConfigStore()
/frameworks/base/wifi/tests/src/android/net/wifi/
DWifiNetworkSuggestionTest.java178 assertTrue(suggestion.wifiConfiguration.allowedGroupCiphers in testWifiNetworkSuggestionBuilderForWpa3EapNetwork()
/frameworks/opt/setupwizard/tools/docs/
Dandroid-22.txt17906 field public java.util.BitSet allowedGroupCiphers;
/frameworks/base/api/
Dcurrent.txt29617 field @Deprecated @NonNull public java.util.BitSet allowedGroupCiphers;