Searched refs:allowedSuiteBCiphers (Results 1 – 7 of 7) sorted by relevance
1191 public BitSet allowedSuiteBCiphers; field in WifiConfiguration2862 allowedSuiteBCiphers = new BitSet(); in WifiConfiguration()3100 for (int sbc = 0; sbc < this.allowedSuiteBCiphers.size(); sbc++) { in toString()3101 if (this.allowedSuiteBCiphers.get(sbc)) { in toString()3578 allowedSuiteBCiphers = (BitSet) source.allowedSuiteBCiphers.clone(); in WifiConfiguration()3672 writeBitSet(dest, allowedSuiteBCiphers); in writeToParcel()3758 config.allowedSuiteBCiphers = readBitSet(in);
235 config.allowedSuiteBCiphers = (BitSet) mAllowedSuiteBCiphers.clone(); in updateLegacyWifiConfiguration()
496 configuration.allowedSuiteBCiphers.toByteArray()); in writeCommonElementsToXml()743 byte[] allowedSuiteBCiphers = (byte[]) value; in parseFromXml()744 configuration.allowedSuiteBCiphers = in parseFromXml()745 BitSet.valueOf(allowedSuiteBCiphers); in parseFromXml()
336 if (!Objects.equals(existingConfig.allowedSuiteBCiphers, in hasCredentialChanged()337 newConfig.allowedSuiteBCiphers)) { in hasCredentialChanged()
652 BitSet allowedSuiteBCiphers = securityParams.getAllowedSuiteBCiphers(); in saveSuiteBConfig() local653 if (allowedSuiteBCiphers.get(WifiConfiguration.SuiteBCipher.ECDHE_RSA)) { in saveSuiteBConfig()658 } else if (allowedSuiteBCiphers.get(WifiConfiguration.SuiteBCipher.ECDHE_ECDSA)) { in saveSuiteBConfig()
260 assertTrue(savedNetwork.allowedSuiteBCiphers.get(WifiConfiguration.SuiteBCipher.ECDHE_RSA)); in testConfigureSuiteBRsa3072()289 savedNetwork.allowedSuiteBCiphers.get(WifiConfiguration.SuiteBCipher.ECDHE_ECDSA)); in testConfigureSuiteBEcdsa()
137 field @Deprecated @NonNull public java.util.BitSet allowedSuiteBCiphers;