Home
last modified time | relevance | path

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

/frameworks/opt/net/wifi/tests/wifitests/src/com/android/server/wifi/
DSupplicantStaNetworkHalTest.java390 assertTrue((mSupplicantVariables.keyMgmtMask & android.hardware.wifi.supplicant.V1_3 in testTLSWifiEnterpriseConfigWithFilsEapErp()
747 assertTrue((mSupplicantVariables.keyMgmtMask & ISupplicantStaNetwork.KeyMgmtMask.FT_PSK) in testAddFtPskFlags()
769 assertTrue((mSupplicantVariables.keyMgmtMask & ISupplicantStaNetwork.KeyMgmtMask.FT_EAP) in testAddFtEapFlags()
790 assertTrue((mSupplicantVariables.keyMgmtMask in testAddPskSha256Flags()
813 assertTrue((mSupplicantVariables.keyMgmtMask in testAddEapSha256Flags()
834 assertFalse((mSupplicantVariables.keyMgmtMask in testAddPskSha256FlagsHal1_1OrLower()
849 assertFalse((mSupplicantVariables.keyMgmtMask in testAddEapSha256FlagsHal1_1OrLower()
1254 mSupplicantVariables.keyMgmtMask = mask; in setupISupplicantNetworkMock()
1260 cb.onValues(mStatusSuccess, mSupplicantVariables.keyMgmtMask); in setupISupplicantNetworkMock()
1268 mSupplicantVariables.keyMgmtMask = mask; in setupISupplicantNetworkMock()
[all …]
/frameworks/opt/net/wifi/service/java/com/android/server/wifi/
DSupplicantStaNetworkHal.java213 BitSet keyMgmtMask = supplicantToWifiConfigurationKeyMgmtMask(mKeyMgmtMask); in loadWifiConfiguration() local
214 config.allowedKeyManagement = removeFastTransitionFlags(keyMgmtMask); in loadWifiConfiguration()
320 BitSet keyMgmtMask = addFastTransitionFlags(config.allowedKeyManagement); in saveWifiConfiguration() local
322 keyMgmtMask = addSha256KeyMgmtFlags(keyMgmtMask); in saveWifiConfiguration()
323 if (!setKeyMgmt(wifiConfigurationToSupplicantKeyMgmtMask(keyMgmtMask))) { in saveWifiConfiguration()
328 if (keyMgmtMask.get(WifiConfiguration.KeyMgmt.SUITE_B_192) in saveWifiConfiguration()
1350 private boolean setKeyMgmt(int keyMgmtMask) { in setKeyMgmt() argument
1364 status = getV1_3StaNetwork().setKeyMgmt_1_3(keyMgmtMask); in setKeyMgmt()
1369 status = iSupplicantStaNetworkV12.setKeyMgmt_1_2(keyMgmtMask); in setKeyMgmt()
1371 status = mISupplicantStaNetwork.setKeyMgmt(keyMgmtMask); in setKeyMgmt()
DSupplicantStaIfaceHal.java2821 MutableInt keyMgmtMask = new MutableInt(0); in getKeyMgmtCapabilities_1_3() local
2842 keyMgmtMask.value = keyMgmtMaskInternal; in getKeyMgmtCapabilities_1_3()
2849 return keyMgmtMask.value; in getKeyMgmtCapabilities_1_3()
2855 MutableInt keyMgmtMask = new MutableInt(0); in getKeyMgmtCapabilities() local
2858 keyMgmtMask.value = getKeyMgmtCapabilities_1_3(ifaceName); in getKeyMgmtCapabilities()
2882 keyMgmtMask.value = keyMgmtMaskInternal; in getKeyMgmtCapabilities()
2894 return keyMgmtMask.value; in getKeyMgmtCapabilities()