HomeSort by relevance Sort by last modified time
    Searched refs:Phase2 (Results 1 - 9 of 9) sorted by null

  /cts/tests/tests/net/src/android/net/wifi/cts/
WifiEnterpriseConfigTest.java 24 import android.net.wifi.WifiEnterpriseConfig.Phase2;
71 assertTrue(config.getPhase2Method() == Phase2.NONE);
72 config.setPhase2Method(Phase2.PAP);
73 assertTrue(config.getPhase2Method() == Phase2.PAP);
74 config.setPhase2Method(Phase2.MSCHAP);
75 assertTrue(config.getPhase2Method() == Phase2.MSCHAP);
76 config.setPhase2Method(Phase2.MSCHAPV2);
77 assertTrue(config.getPhase2Method() == Phase2.MSCHAPV2);
78 config.setPhase2Method(Phase2.GTC);
79 assertTrue(config.getPhase2Method() == Phase2.GTC)
    [all...]
  /frameworks/base/wifi/java/android/net/wifi/
WifiEnterpriseConfig.java 47 public static final String PHASE2_KEY = "phase2";
239 public static final class Phase2 {
255 private Phase2() {}
275 setPhase2Method(Phase2.NONE);
302 * @param phase2Method is the inner authentication method and can be one of {@link Phase2#NONE},
303 * {@link Phase2#PAP}, {@link Phase2#MSCHAP}, {@link Phase2#MSCHAPV2},
304 * {@link Phase2#GTC}
305 * @throws IllegalArgumentException on an invalid phase2 metho
552 String phase2 = mFields.get(PHASE2_KEY); local
    [all...]
  /frameworks/base/core/tests/ConnectivityManagerTest/src/com/android/connectivitymanagertest/
WifiConfigurationHelper.java 111 * @param phase2 The phase 2 method or null
119 Integer phase2, String identity, String anonymousIdentity, String caCert,
128 if (phase2 == null) phase2 = WifiEnterpriseConfig.Phase2.NONE;
136 config.enterpriseConfig.setPhase2Method(phase2);
161 * "password" must also be provided. If EAP is selected, then the fiels "eap", "phase2",
212 Integer phase2 = null; local
213 if (jsonConfig.has("phase2")) {
214 phase2 = getPhase2(jsonConfig.getString("phase2"))
    [all...]
  /external/llvm/utils/release/
test-release.sh 435 llvmCore_phase2_objdir=$BuildDir/Phase2/$Flavor/llvmCore-$Release-$RC.obj
436 llvmCore_phase2_installdir=$BuildDir/Phase2/$Flavor/llvmCore-$Release-$RC.install
437 llvmCore_de_phase2_objdir=$BuildDir/Phase2/$Flavor/llvmCore-DragonEgg-$Release-$RC.obj
438 llvmCore_de_phase2_installdir=$BuildDir/Phase2/$Flavor/llvmCore-DragonEgg-$Release-$RC.install
439 dragonegg_phase2_objdir=$BuildDir/Phase2/$Flavor/DragonEgg-$Release-$RC.obj
518 # Compare .o files between Phase2 and Phase3 and report which ones
524 p3=`echo $o | sed -e 's,Phase2,Phase3,'`
574 # Compare .o files between Phase2 and Phase3 and report which ones differ.
579 p3=`echo $o | sed -e 's,Phase2,Phase3,'`
  /packages/apps/Settings/src/com/android/settings/wifi/
WifiConfigController.java 39 import android.net.wifi.WifiEnterpriseConfig.Phase2;
101 /* Phase2 methods supported by PEAP are limited */
103 /* Full list of phase2 methods */
433 // PEAP supports limited phase2 values
438 config.enterpriseConfig.setPhase2Method(Phase2.NONE);
441 config.enterpriseConfig.setPhase2Method(Phase2.MSCHAPV2);
444 config.enterpriseConfig.setPhase2Method(Phase2.GTC);
447 Log.e(TAG, "Unknown phase2 method" + phase2Method);
647 mPhase2Spinner = (Spinner) mView.findViewById(R.id.phase2);
666 case Phase2.NONE
    [all...]
  /external/robolectric/lib/main/
android.jar 
  /prebuilts/sdk/18/
android.jar 
  /prebuilts/sdk/19/
android.jar 
  /prebuilts/sdk/21/
android.jar 

Completed in 731 milliseconds