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

  /cts/tests/tests/net/src/android/net/wifi/cts/
WifiEnterpriseConfigTest.java 23 import android.net.wifi.WifiEnterpriseConfig.Phase2;
59 assertTrue(config.getPhase2Method() == Phase2.NONE);
60 config.setPhase2Method(Phase2.PAP);
61 assertTrue(config.getPhase2Method() == Phase2.PAP);
62 config.setPhase2Method(Phase2.MSCHAP);
63 assertTrue(config.getPhase2Method() == Phase2.MSCHAP);
64 config.setPhase2Method(Phase2.MSCHAPV2);
65 assertTrue(config.getPhase2Method() == Phase2.MSCHAPV2);
66 config.setPhase2Method(Phase2.GTC);
67 assertTrue(config.getPhase2Method() == Phase2.GTC)
    [all...]
  /frameworks/base/wifi/java/android/net/wifi/
WifiEnterpriseConfig.java 78 private static final String PHASE2_KEY = "phase2";
232 public static final class Phase2 {
247 private Phase2() {}
294 * @param phase2Method is the inner authentication method and can be one of {@link Phase2#NONE},
295 * {@link Phase2#PAP}, {@link Phase2#MSCHAP}, {@link Phase2#MSCHAPV2},
296 * {@link Phase2#GTC}
297 * @throws IllegalArgumentException on an invalid phase2 method
302 case Phase2.NONE
605 String phase2 = mFields.get(PHASE2_KEY); local
    [all...]
  /frameworks/base/core/tests/ConnectivityManagerTest/src/com/android/connectivitymanagertest/
AccessPointParserHelper.java 49 * security, eap, phase2, identity, password, anonymousidentity, cacert, usercert,
60 * <phase2>MSCHAP2</phase2>
114 boolean phase2 = false;
142 if (tagName.equalsIgnoreCase("phase2")) {
143 phase2 = true;
215 config.enterpriseConfig.setPhase2Method(WifiEnterpriseConfig.Phase2.NONE);
266 if (phase2) {
269 config.enterpriseConfig.setPhase2Method(WifiEnterpriseConfig.Phase2.PAP);
271 config.enterpriseConfig.setPhase2Method(WifiEnterpriseConfig.Phase2.MSCHAP)
    [all...]
  /external/llvm/utils/release/
test-release.sh 360 llvmCore_phase2_objdir=$BuildDir/Phase2/$Flavor/llvmCore-$Release-$RC.obj
361 llvmCore_phase2_installdir=$BuildDir/Phase2/$Flavor/llvmCore-$Release-$RC.install
362 llvmCore_de_phase2_objdir=$BuildDir/Phase2/$Flavor/llvmCore-DragonEgg-$Release-$RC.obj
363 llvmCore_de_phase2_installdir=$BuildDir/Phase2/$Flavor/llvmCore-DragonEgg-$Release-$RC.install
364 dragonegg_phase2_objdir=$BuildDir/Phase2/$Flavor/DragonEgg-$Release-$RC.obj
440 # Compare .o files between Phase2 and Phase3 and report which ones
446 p3=`echo $o | sed -e 's,Phase2,Phase3,'`
494 # Compare .o files between Phase2 and Phase3 and report which ones differ.
499 p3=`echo $o | sed -e 's,Phase2,Phase3,'`
  /packages/apps/Settings/src/com/android/settings/wifi/
WifiConfigController.java 36 import android.net.wifi.WifiEnterpriseConfig.Phase2;
86 /* Phase2 methods supported by PEAP are limited */
88 /* Full list of phase2 methods */
376 // PEAP supports limited phase2 values
381 config.enterpriseConfig.setPhase2Method(Phase2.NONE);
384 config.enterpriseConfig.setPhase2Method(Phase2.MSCHAPV2);
387 config.enterpriseConfig.setPhase2Method(Phase2.GTC);
390 Log.e(TAG, "Unknown phase2 method" + phase2Method);
582 mPhase2Spinner = (Spinner) mView.findViewById(R.id.phase2);
601 case Phase2.NONE
    [all...]
  /prebuilts/sdk/current/
android.jar 

Completed in 3536 milliseconds