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

1 2

  /packages/apps/TvSettings/Settings/src/com/android/tv/settings/connectivity/
WifiSecurity.java 24 import android.net.wifi.WifiConfiguration.KeyMgmt;
47 if (config.allowedKeyManagement.get(KeyMgmt.WPA_PSK)) {
50 if (config.allowedKeyManagement.get(KeyMgmt.WPA_EAP)
51 || config.allowedKeyManagement.get(KeyMgmt.IEEE8021X)) {
WifiConfigHelper.java 27 import android.net.wifi.WifiConfiguration.KeyMgmt;
85 config.allowedKeyManagement.set(KeyMgmt.NONE);
88 config.allowedKeyManagement.set(KeyMgmt.NONE);
93 config.allowedKeyManagement.set(KeyMgmt.WPA_PSK);
96 config.allowedKeyManagement.set(KeyMgmt.WPA_EAP);
97 config.allowedKeyManagement.set(KeyMgmt.IEEE8021X);
ConnectivityListener.java 31 import android.net.wifi.WifiConfiguration.KeyMgmt;
343 return configuredNetwork.allowedKeyManagement.get(KeyMgmt.WPA_PSK) ||
344 configuredNetwork.allowedKeyManagement.get(KeyMgmt.WPA_EAP) ||
345 configuredNetwork.allowedKeyManagement.get(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);
  /frameworks/base/wifi/java/android/net/wifi/
WifiConfiguration.java 65 public static class KeyMgmt {
66 private KeyMgmt() { }
296 * See {@link KeyMgmt} for descriptions of the values.
901 if (allowedKeyManagement.get(KeyMgmt.WPA_EAP) == false) {
904 if ((allowedKeyManagement.get(KeyMgmt.IEEE8021X) == false)
905 && (allowedKeyManagement.get(KeyMgmt.WPA_PSK) == false)) {
    [all...]
  /packages/apps/ManagedProvisioning/src/com/android/managedprovisioning/
WifiConfig.java 69 wifiConf.allowedKeyManagement.set(WifiConfiguration.KeyMgmt.NONE);
94 wifiConf.allowedKeyManagement.set(WifiConfiguration.KeyMgmt.WPA_PSK);
108 wifiConf.allowedKeyManagement.set(WifiConfiguration.KeyMgmt.NONE);
  /packages/apps/Nfc/src/com/android/nfc/
NfcWifiProtectedSetup.java 163 allowedKeyManagement.set(WifiConfiguration.KeyMgmt.WPA_PSK);
165 allowedKeyManagement.set(WifiConfiguration.KeyMgmt.WPA_EAP);
167 allowedKeyManagement.set(WifiConfiguration.KeyMgmt.NONE);
  /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);
  /frameworks/opt/net/wifi/service/java/com/android/server/wifi/
WifiApConfigStore.java 21 import android.net.wifi.WifiConfiguration.KeyMgmt;
161 if (authType != KeyMgmt.NONE) {
190 if(authType != KeyMgmt.NONE) {
211 config.allowedKeyManagement.set(KeyMgmt.WPA2_PSK);
WifiConfigStore.java 30 import android.net.wifi.WifiConfiguration.KeyMgmt;
620 && config.allowedKeyManagement.get(WifiConfiguration.KeyMgmt.WPA_PSK)
    [all...]
WifiAutoJoinController.java 24 import android.net.wifi.WifiConfiguration.KeyMgmt;
    [all...]
WifiStateMachine.java     [all...]
  /packages/apps/Settings/src/com/android/settings/wifi/
WifiApDialog.java 24 import android.net.wifi.WifiConfiguration.KeyMgmt;
70 if (wifiConfig.allowedKeyManagement.get(KeyMgmt.WPA2_PSK)) {
90 config.allowedKeyManagement.set(KeyMgmt.NONE);
94 config.allowedKeyManagement.set(KeyMgmt.WPA2_PSK);
AccessPoint.java 29 import android.net.wifi.WifiConfiguration.KeyMgmt;
126 if (config.allowedKeyManagement.get(KeyMgmt.WPA_PSK)) {
129 if (config.allowedKeyManagement.get(KeyMgmt.WPA_EAP) ||
130 config.allowedKeyManagement.get(KeyMgmt.IEEE8021X)) {
717 mConfig.allowedKeyManagement.set(KeyMgmt.NONE);
WifiConfigController.java 36 import android.net.wifi.WifiConfiguration.KeyMgmt;
392 config.allowedKeyManagement.set(KeyMgmt.NONE);
396 config.allowedKeyManagement.set(KeyMgmt.NONE);
413 config.allowedKeyManagement.set(KeyMgmt.WPA_PSK);
425 config.allowedKeyManagement.set(KeyMgmt.WPA_EAP);
426 config.allowedKeyManagement.set(KeyMgmt.IEEE8021X);
    [all...]
  /frameworks/base/packages/SettingsProvider/src/com/android/providers/settings/
SettingsBackupAgent.java 29 import android.net.wifi.WifiConfiguration.KeyMgmt;
220 types.set(KeyMgmt.WPA_PSK);
221 types.set(KeyMgmt.WPA_EAP);
233 types.set(KeyMgmt.WPA_PSK);
236 types.set(KeyMgmt.WPA_EAP);
239 types.set(KeyMgmt.IEEE8021X);
246 if (types.get(KeyMgmt.WPA_PSK)) {
247 key = bareSsid + KeyMgmt.strings[KeyMgmt.WPA_PSK];
248 } else if (types.get(KeyMgmt.WPA_EAP) || types.get(KeyMgmt.IEEE8021X))
    [all...]
  /frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/policy/
AccessPointControllerImpl.java 26 import android.net.wifi.WifiConfiguration.KeyMgmt;
133 config.allowedKeyManagement.set(KeyMgmt.NONE);
  /frameworks/base/core/tests/bandwidthtests/src/com/android/bandwidthtest/util/
ConnectionUtil.java 36 import android.net.wifi.WifiConfiguration.KeyMgmt;
539 config.allowedKeyManagement.set(KeyMgmt.NONE);
  /frameworks/base/services/core/java/com/android/server/
NetworkManagementService.java 53 import android.net.wifi.WifiConfiguration.KeyMgmt;
    [all...]
  /external/chromium_org/third_party/libaddressinput/src/java/
android.jar 
  /external/robolectric/lib/main/
android.jar 
  /prebuilts/sdk/12/
android.jar 
  /prebuilts/sdk/14/
android.jar 

Completed in 247 milliseconds

1 2