/aosp12/packages/modules/Wifi/service/java/com/android/server/wifi/ |
H A D | WifiBackupDataV1Parser.java | 280 if (config.allowedPairwiseCiphers.length() in clearAnyKnownIssuesInParsedConfiguration() 282 config.allowedPairwiseCiphers.clear( in clearAnyKnownIssuesInParsedConfiguration() 284 config.allowedPairwiseCiphers.length()); in clearAnyKnownIssuesInParsedConfiguration() 373 byte[] allowedPairwiseCiphers = (byte[]) value; in parseWifiConfigurationFromXmlInternal() 374 configuration.allowedPairwiseCiphers = in parseWifiConfigurationFromXmlInternal() 375 BitSet.valueOf(allowedPairwiseCiphers); in parseWifiConfigurationFromXmlInternal()
|
H A D | WifiConfigurationUtil.java | 324 if (!Objects.equals(existingConfig.allowedPairwiseCiphers, in hasCredentialChanged() 325 newConfig.allowedPairwiseCiphers)) { in hasCredentialChanged() 590 if (!validateBitSet(config.allowedPairwiseCiphers, in validateBitSets() 593 + config.allowedPairwiseCiphers); in validateBitSets()
|
H A D | SupplicantStaNetworkHal.java | 359 BitSet allowedPairwiseCiphers = securityParams.getAllowedPairwiseCiphers(); in saveWifiConfiguration() local 360 if (allowedPairwiseCiphers.cardinality() != 0 in saveWifiConfiguration() 362 allowedPairwiseCiphers))) { in saveWifiConfiguration() 636 BitSet allowedPairwiseCiphers = securityParams.getAllowedPairwiseCiphers(); in saveSuiteBConfig() local 637 if (allowedPairwiseCiphers.cardinality() != 0 in saveSuiteBConfig() 639 allowedPairwiseCiphers))) { in saveSuiteBConfig()
|
H A D | WifiMetrics.java | 5508 info.allowedPairwiseCiphers = bitSetToInt(config.allowedPairwiseCiphers); in createConfigInfo() 5825 .append(" allowed_pairwise_ciphers=").append(info.allowedPairwiseCiphers) in configInfoToString()
|
/aosp12/frameworks/base/core/tests/ConnectivityManagerTest/src/com/android/connectivitymanagertest/functional/ |
H A D | WifiAssociationTest.java | 107 config.allowedPairwiseCiphers.set(PairwiseCipher.TKIP); in getConfig() 115 config.allowedPairwiseCiphers.set(PairwiseCipher.CCMP); in getConfig()
|
/aosp12/packages/modules/Wifi/framework/tests/src/android/net/wifi/ |
H A D | SecurityParamsTest.java | 352 BitSet allowedPairwiseCiphers = new BitSet(); in testCommonSetterGetter() local 353 allowedPairwiseCiphers.set(PairwiseCipher.CCMP); in testCommonSetterGetter() 354 allowedPairwiseCiphers.set(PairwiseCipher.TKIP); in testCommonSetterGetter() 369 assertEquals(allowedPairwiseCiphers, params.getAllowedPairwiseCiphers()); in testCommonSetterGetter()
|
H A D | WifiConfigurationTest.java | 567 assertTrue(config.allowedPairwiseCiphers.get(WifiConfiguration.PairwiseCipher.CCMP)); in testSetSecurityParamsForSae() 568 assertTrue(config.allowedPairwiseCiphers.get(WifiConfiguration.PairwiseCipher.GCMP_256)); in testSetSecurityParamsForSae() 586 assertTrue(config.allowedPairwiseCiphers.get(WifiConfiguration.PairwiseCipher.CCMP)); in testSetSecurityParamsForOwe() 587 assertTrue(config.allowedPairwiseCiphers.get(WifiConfiguration.PairwiseCipher.GCMP_256)); in testSetSecurityParamsForOwe() 607 assertTrue(config.allowedPairwiseCiphers.get(WifiConfiguration.PairwiseCipher.GCMP_256)); in testSetSecurityParamsForSuiteB() 627 assertTrue(config.allowedPairwiseCiphers.get(WifiConfiguration.PairwiseCipher.CCMP)); in testSetSecurityParamsForWpa3Enterprise() 628 assertTrue(config.allowedPairwiseCiphers.get(WifiConfiguration.PairwiseCipher.GCMP_256)); in testSetSecurityParamsForWpa3Enterprise()
|
H A D | WifiNetworkSuggestionTest.java | 616 assertTrue(suggestion.wifiConfiguration.allowedPairwiseCiphers in testWifiNetworkSuggestionBuilderForWapiPskNetwork() 643 assertTrue(suggestion.wifiConfiguration.allowedPairwiseCiphers in testWifiNetworkSuggestionBuilderForWapiCertNetwork() 673 assertTrue(suggestion.wifiConfiguration.allowedPairwiseCiphers in testWifiNetworkSuggestionBuilderForWapiCertAutoNetwork()
|
/aosp12/packages/modules/Wifi/service/tests/wifitests/src/com/android/server/wifi/ |
H A D | WifiBackupRestoreTest.java | 436 config.allowedPairwiseCiphers.set(WifiConfiguration.PairwiseCipher.TKIP); in createNetworkForConfigurationWithUnsupportedTag() 437 config.allowedPairwiseCiphers.set(WifiConfiguration.PairwiseCipher.CCMP); in createNetworkForConfigurationWithUnsupportedTag() 489 config.allowedPairwiseCiphers.set(WifiConfiguration.PairwiseCipher.TKIP); in createNetworkForConfigurationWithUnsupportedValuesInBitsetsInRestore() 490 config.allowedPairwiseCiphers.set(WifiConfiguration.PairwiseCipher.CCMP); in createNetworkForConfigurationWithUnsupportedValuesInBitsetsInRestore() 1119 config.allowedPairwiseCiphers.set(WifiConfiguration.PairwiseCipher.TKIP); in createNetworkForConfigurationWithV1_0Data() 1120 config.allowedPairwiseCiphers.set(WifiConfiguration.PairwiseCipher.CCMP); in createNetworkForConfigurationWithV1_0Data()
|
H A D | SupplicantStaNetworkHalTest.java | 1119 config.allowedPairwiseCiphers.clear(WifiConfiguration.PairwiseCipher.GCMP_256); in testWifiConfigurationSaveLoad() 1124 config.allowedPairwiseCiphers.clear(WifiConfiguration.PairwiseCipher.SMS4); in testWifiConfigurationSaveLoad() 1129 config.allowedPairwiseCiphers.clear(WifiConfiguration.PairwiseCipher.GCMP_128); in testWifiConfigurationSaveLoad() 1344 BitSet allowedPairwiseCiphers = config.getDefaultSecurityParams() in putAllSupportingPairwiseCiphersAndReturnExpectedHalCiphersValue() local 1347 if (allowedPairwiseCiphers.get(WifiConfiguration.PairwiseCipher.GCMP_128) in putAllSupportingPairwiseCiphersAndReturnExpectedHalCiphersValue() 1355 if (allowedPairwiseCiphers.get(WifiConfiguration.PairwiseCipher.SMS4) in putAllSupportingPairwiseCiphersAndReturnExpectedHalCiphersValue() 1363 if (allowedPairwiseCiphers.get(WifiConfiguration.PairwiseCipher.GCMP_256) in putAllSupportingPairwiseCiphersAndReturnExpectedHalCiphersValue() 1371 if (allowedPairwiseCiphers.get(WifiConfiguration.PairwiseCipher.CCMP)) { in putAllSupportingPairwiseCiphersAndReturnExpectedHalCiphersValue()
|
H A D | WifiConfigurationTestUtil.java | 720 assertEquals(expected.allowedPairwiseCiphers, actual.allowedPairwiseCiphers); in assertCommonConfigurationElementsEqual()
|
H A D | NetworkListStoreDataTest.java | 822 assertTrue(retrievedNetworkList.get(0).allowedPairwiseCiphers in fixSaeNetworkWithLegacySecurity()
|
H A D | WifiConfigurationUtilTest.java | 623 config.allowedPairwiseCiphers.set(WifiConfiguration.PairwiseCipher.CCMP + 4); in testValidateNegativeCases_InvalidPairwiseCipher()
|
H A D | WifiMetricsTest.java | 3433 config.allowedPairwiseCiphers = intToBitSet(TEST_ALLOWED_PAIRWISE_CIPHERS); in createComplexWifiConfig() 3451 assertEquals(config.allowedPairwiseCiphers, intToBitSet(info.allowedPairwiseCiphers)); in assertConfigInfoEqualsWifiConfig()
|
H A D | WifiConfigManagerTest.java | 1751 network.allowedPairwiseCiphers.clear(); in testUpdateSingleNetworkWithNullValues() 1782 network.allowedPairwiseCiphers.clear(); in testUpdateSingleNetworkWithNullValues()
|
H A D | WifiNetworkSuggestionsManagerTest.java | 1074 legacyConfig.allowedPairwiseCiphers.set(WifiConfiguration.PairwiseCipher.CCMP); in testGetNetworkSuggestionsForScanDetailSuccessWithOneMatchForLegacyConfig()
|
/aosp12/packages/modules/Wifi/framework/java/android/net/wifi/ |
H A D | WifiConfiguration.java | 1171 public BitSet allowedPairwiseCiphers; field in WifiConfiguration 2859 allowedPairwiseCiphers = new BitSet(); in WifiConfiguration() 3064 for (int pc = 0; pc < this.allowedPairwiseCiphers.size(); pc++) { in toString() 3065 if (this.allowedPairwiseCiphers.get(pc)) { in toString() 3575 allowedPairwiseCiphers = (BitSet) source.allowedPairwiseCiphers.clone(); in WifiConfiguration() 3669 writeBitSet(dest, allowedPairwiseCiphers); in writeToParcel() 3755 config.allowedPairwiseCiphers = readBitSet(in);
|
H A D | SecurityParams.java | 232 config.allowedPairwiseCiphers = (BitSet) mAllowedPairwiseCiphers.clone(); in updateLegacyWifiConfiguration()
|
/aosp12/packages/apps/ManagedProvisioning/src/com/android/managedprovisioning/task/wifi/ |
H A D | WifiConfigurationProvider.java | 243 wifiConf.allowedPairwiseCiphers.set(WifiConfiguration.PairwiseCipher.TKIP); in updateForWPAConfiguration() 244 wifiConf.allowedPairwiseCiphers.set(WifiConfiguration.PairwiseCipher.CCMP); in updateForWPAConfiguration()
|
/aosp12/packages/modules/Wifi/service/java/com/android/server/wifi/util/ |
H A D | XmlUtil.java | 490 configuration.allowedPairwiseCiphers.toByteArray()); in writeCommonElementsToXml() 733 byte[] allowedPairwiseCiphers = (byte[]) value; in parseFromXml() 734 configuration.allowedPairwiseCiphers = in parseFromXml() 735 BitSet.valueOf(allowedPairwiseCiphers); in parseFromXml()
|
/aosp12/frameworks/opt/net/wifi/libs/WifiTrackerLib/src/com/android/wifitrackerlib/ |
H A D | Utils.java | 165 && !config.allowedPairwiseCiphers.get(WifiConfiguration.PairwiseCipher.TKIP) in getSecurityTypesFromWifiConfiguration()
|
/aosp12/packages/modules/Wifi/framework/api/ |
H A D | current.txt | 135 field @Deprecated @NonNull public java.util.BitSet allowedPairwiseCiphers;
|
/aosp12/frameworks/base/tools/aapt2/integration-tests/CommandTests/ |
H A D | android-28.jar | META-INF/
META-INF/MANIFEST.MF
javax/
javax/net/
javax/ ... |
/aosp12/frameworks/opt/setupwizard/tools/docs/ |
H A D | android-22.txt | 17908 field public java.util.BitSet allowedPairwiseCiphers;
|