HomeSort by relevance Sort by last modified time
    Searched refs:KeyMgmt (Results 1 - 25 of 64) sorted by null

1 2 3

  /packages/services/NetworkRecommendation/src/com/android/networkrecommendation/util/
WifiConfigurationUtil.java 42 return config.allowedKeyManagement.get(WifiConfiguration.KeyMgmt.WPA_PSK);
49 return (config.allowedKeyManagement.get(WifiConfiguration.KeyMgmt.WPA_EAP)
50 || config.allowedKeyManagement.get(WifiConfiguration.KeyMgmt.IEEE8021X));
57 return (config.allowedKeyManagement.get(WifiConfiguration.KeyMgmt.NONE)
  /packages/apps/TvSettings/Settings/src/com/android/tv/settings/connectivity/
WifiSecurity.java 48 if (config.allowedKeyManagement.get(WifiConfiguration.KeyMgmt.WPA_PSK)) {
51 if (config.allowedKeyManagement.get(WifiConfiguration.KeyMgmt.WPA_EAP)
52 || config.allowedKeyManagement.get(WifiConfiguration.KeyMgmt.IEEE8021X)) {
WifiConfigHelper.java 22 import android.net.wifi.WifiConfiguration.KeyMgmt;
79 config.allowedKeyManagement.set(KeyMgmt.NONE);
82 config.allowedKeyManagement.set(KeyMgmt.NONE);
87 config.allowedKeyManagement.set(KeyMgmt.WPA_PSK);
90 config.allowedKeyManagement.set(KeyMgmt.WPA_EAP);
91 config.allowedKeyManagement.set(KeyMgmt.IEEE8021X);
  /frameworks/opt/net/wifi/service/java/com/android/server/wifi/util/
ScanResultUtil.java 138 config.allowedKeyManagement.set(WifiConfiguration.KeyMgmt.WPA_PSK);
140 config.allowedKeyManagement.set(WifiConfiguration.KeyMgmt.WPA_EAP);
141 config.allowedKeyManagement.set(WifiConfiguration.KeyMgmt.IEEE8021X);
143 config.allowedKeyManagement.set(WifiConfiguration.KeyMgmt.NONE);
147 config.allowedKeyManagement.set(WifiConfiguration.KeyMgmt.NONE);
  /frameworks/opt/net/wifi/tests/wifitests/src/com/android/server/wifi/util/
ScanResultUtilTest.java 95 config.allowedKeyManagement.set(WifiConfiguration.KeyMgmt.NONE);
99 config.allowedKeyManagement.set(WifiConfiguration.KeyMgmt.NONE);
104 config.allowedKeyManagement.set(WifiConfiguration.KeyMgmt.WPA_PSK);
108 config.allowedKeyManagement.set(WifiConfiguration.KeyMgmt.WPA_EAP);
123 assertTrue(config.allowedKeyManagement.get(WifiConfiguration.KeyMgmt.NONE));
128 assertTrue(config.allowedKeyManagement.get(WifiConfiguration.KeyMgmt.NONE));
135 assertTrue(config.allowedKeyManagement.get(WifiConfiguration.KeyMgmt.WPA_PSK));
140 assertTrue(config.allowedKeyManagement.get(WifiConfiguration.KeyMgmt.WPA_EAP));
141 assertTrue(config.allowedKeyManagement.get(WifiConfiguration.KeyMgmt.IEEE8021X));
  /frameworks/base/core/tests/ConnectivityManagerTest/src/com/android/connectivitymanagertest/unit/
WifiSoftAPTest.java 22 import android.net.wifi.WifiConfiguration.KeyMgmt;
65 config.allowedKeyManagement.set(KeyMgmt.NONE);
WifiClientTest.java 26 import android.net.wifi.WifiConfiguration.KeyMgmt;
118 config.allowedKeyManagement.set(KeyMgmt.NONE);
155 config.allowedKeyManagement.set(KeyMgmt.NONE);
205 config.allowedKeyManagement.set(KeyMgmt.NONE);
  /packages/apps/ManagedProvisioning/tests/instrumentation/src/com/android/managedprovisioning/task/wifi/
WifiConfigurationProviderTest.java 88 assertTrue(wifiConf.allowedKeyManagement.get(WifiConfiguration.KeyMgmt.WPA_PSK));
99 assertTrue(wifiConf.allowedKeyManagement.get(WifiConfiguration.KeyMgmt.NONE));
109 assertTrue(wifiConf.allowedKeyManagement.get(WifiConfiguration.KeyMgmt.NONE));
119 assertTrue(wifiConf.allowedKeyManagement.get(WifiConfiguration.KeyMgmt.NONE));
129 assertTrue(wifiConf.allowedKeyManagement.get(WifiConfiguration.KeyMgmt.NONE));
  /frameworks/opt/net/wifi/service/java/com/android/server/wifi/
WifiConfigurationUtil.java 88 return config.allowedKeyManagement.get(WifiConfiguration.KeyMgmt.WPA_PSK);
95 return (config.allowedKeyManagement.get(WifiConfiguration.KeyMgmt.WPA_EAP)
96 || config.allowedKeyManagement.get(WifiConfiguration.KeyMgmt.IEEE8021X));
103 return (config.allowedKeyManagement.get(WifiConfiguration.KeyMgmt.NONE)
288 if (config.allowedKeyManagement.get(WifiConfiguration.KeyMgmt.WPA_PSK)) {
290 } else if (config.allowedKeyManagement.get(WifiConfiguration.KeyMgmt.WPA_EAP)
291 || config.allowedKeyManagement.get(WifiConfiguration.KeyMgmt.IEEE8021X)) {
WifiApConfigStore.java 21 import android.net.wifi.WifiConfiguration.KeyMgmt;
150 if (authType != KeyMgmt.NONE) {
181 if (authType != KeyMgmt.NONE) {
199 config.allowedKeyManagement.set(KeyMgmt.WPA2_PSK);
220 config.allowedKeyManagement.set(KeyMgmt.WPA2_PSK);
SoftApManager.java 26 import android.net.wifi.WifiConfiguration.KeyMgmt;
196 case KeyMgmt.NONE:
199 case KeyMgmt.WPA_PSK:
202 case KeyMgmt.WPA2_PSK:
WifiBackupRestore.java 478 public static final String SUPPLICANT_KEY_KEY_MGMT = WifiConfiguration.KeyMgmt.varName;
639 configuration.allowedKeyManagement.set(WifiConfiguration.KeyMgmt.WPA_PSK);
640 configuration.allowedKeyManagement.set(WifiConfiguration.KeyMgmt.WPA_EAP);
654 WifiConfiguration.KeyMgmt.NONE);
657 WifiConfiguration.KeyMgmt.WPA_PSK);
660 WifiConfiguration.KeyMgmt.WPA_EAP);
663 WifiConfiguration.KeyMgmt.IEEE8021X);
    [all...]
SupplicantStaNetworkHal.java 583 private static int wifiConfigurationToSupplicantKeyMgmtMask(BitSet keyMgmt) {
585 for (int bit = keyMgmt.nextSetBit(0); bit != -1; bit = keyMgmt.nextSetBit(bit + 1)) {
587 case WifiConfiguration.KeyMgmt.NONE:
590 case WifiConfiguration.KeyMgmt.WPA_PSK:
593 case WifiConfiguration.KeyMgmt.WPA_EAP:
596 case WifiConfiguration.KeyMgmt.IEEE8021X:
599 case WifiConfiguration.KeyMgmt.OSEN:
602 case WifiConfiguration.KeyMgmt.FT_PSK:
605 case WifiConfiguration.KeyMgmt.FT_EAP
    [all...]
  /frameworks/base/wifi/java/android/net/wifi/
WifiConfiguration.java 79 public static class KeyMgmt {
80 private KeyMgmt() { }
338 * See {@link KeyMgmt} for descriptions of the values.
    [all...]
  /frameworks/opt/net/wifi/tests/wifitests/src/com/android/server/wifi/
WifiApConfigStoreTest.java 26 import android.net.wifi.WifiConfiguration.KeyMgmt;
119 assertTrue(config.allowedKeyManagement.get(KeyMgmt.WPA2_PSK));
142 KeyMgmt.WPA_EAP, /* key management */
162 KeyMgmt.WPA_EAP, /* key management */
189 KeyMgmt.WPA_EAP, /* key management */
  /packages/apps/ManagedProvisioning/src/com/android/managedprovisioning/task/wifi/
WifiConfigurationProvider.java 59 wifiConf.allowedKeyManagement.set(WifiConfiguration.KeyMgmt.NONE);
74 wifiConf.allowedKeyManagement.set(WifiConfiguration.KeyMgmt.WPA_PSK);
88 wifiConf.allowedKeyManagement.set(WifiConfiguration.KeyMgmt.NONE);
  /packages/apps/Nfc/src/com/android/nfc/
NfcWifiProtectedSetup.java 167 allowedKeyManagement.set(WifiConfiguration.KeyMgmt.WPA_PSK);
169 allowedKeyManagement.set(WifiConfiguration.KeyMgmt.WPA_EAP);
171 allowedKeyManagement.set(WifiConfiguration.KeyMgmt.NONE);
  /packages/services/NetworkRecommendation/src/com/android/networkrecommendation/scoring/util/
NetworkUtil.java 18 import static android.net.wifi.WifiConfiguration.KeyMgmt.IEEE8021X;
19 import static android.net.wifi.WifiConfiguration.KeyMgmt.WPA_EAP;
20 import static android.net.wifi.WifiConfiguration.KeyMgmt.WPA_PSK;
  /frameworks/base/core/tests/ConnectivityManagerTest/src/com/android/connectivitymanagertest/
WifiConfigurationHelper.java 25 import android.net.wifi.WifiConfiguration.KeyMgmt;
60 config.allowedKeyManagement.set(KeyMgmt.NONE);
80 config.allowedKeyManagement.set(KeyMgmt.NONE);
101 config.allowedKeyManagement.set(KeyMgmt.WPA_PSK);
124 config.allowedKeyManagement.set(KeyMgmt.WPA_EAP);
125 config.allowedKeyManagement.set(KeyMgmt.IEEE8021X);
  /frameworks/base/core/tests/ConnectivityManagerTest/src/com/android/connectivitymanagertest/stress/
WifiApStress.java 22 import android.net.wifi.WifiConfiguration.KeyMgmt;
80 config.allowedKeyManagement.set(KeyMgmt.WPA_PSK);
  /packages/apps/Settings/src/com/android/settings/wifi/
WifiApDialog.java 24 import android.net.wifi.WifiConfiguration.KeyMgmt;
82 if (wifiConfig.allowedKeyManagement.get(KeyMgmt.WPA2_PSK)) {
104 config.allowedKeyManagement.set(KeyMgmt.NONE);
108 config.allowedKeyManagement.set(KeyMgmt.WPA2_PSK);
  /cts/common/device-side/util/src/com/android/compatibility/common/util/
WifiConfigCreator.java 198 wifiConf.allowedKeyManagement.set(WifiConfiguration.KeyMgmt.NONE);
211 wifiConf.allowedKeyManagement.set(WifiConfiguration.KeyMgmt.WPA_PSK);
218 wifiConf.allowedKeyManagement.set(WifiConfiguration.KeyMgmt.NONE);
  /external/sl4a/Common/src/com/googlecode/android_scripting/facade/wifi/
WifiManagerFacade.java 36 import android.net.wifi.WifiConfiguration.KeyMgmt;
279 config.allowedKeyManagement.set(KeyMgmt.NONE);
283 config.allowedKeyManagement.set(KeyMgmt.WPA_PSK);
286 config.allowedKeyManagement.set(KeyMgmt.WPA_EAP);
287 config.allowedKeyManagement.set(KeyMgmt.IEEE8021X);
289 config.allowedKeyManagement.set(WifiConfiguration.KeyMgmt.NONE);
304 config.allowedKeyManagement.set(WifiConfiguration.KeyMgmt.WPA_PSK);
307 config.allowedKeyManagement.set(WifiConfiguration.KeyMgmt.NONE);
322 config.allowedKeyManagement.set(WifiConfiguration.KeyMgmt.WPA_PSK);
327 config.allowedKeyManagement.set(WifiConfiguration.KeyMgmt.NONE)
    [all...]
  /packages/apps/Car/Settings/src/com/android/car/settings/wifi/
AddWifiActivity.java 101 wifiConfig.allowedKeyManagement.set(WifiConfiguration.KeyMgmt.NONE);
106 wifiConfig.allowedKeyManagement.set(WifiConfiguration.KeyMgmt.NONE);
114 wifiConfig.allowedKeyManagement.set(WifiConfiguration.KeyMgmt.WPA_PSK);
  /frameworks/base/packages/Osu/src/com/android/configparse/
ConfigBuilder.java 211 config.allowedKeyManagement.set(WifiConfiguration.KeyMgmt.WPA_EAP);
212 config.allowedKeyManagement.set(WifiConfiguration.KeyMgmt.IEEE8021X);

Completed in 1511 milliseconds

1 2 3