/packages/modules/IPsec/tests/iketests/src/java/com/android/internal/net/eap/ |
D | EapTestUtils.java | 44 public static EapSessionConfig getDummyEapSessionConfig(byte[] eapIdentity) { in getDummyEapSessionConfig() argument 45 return new EapSessionConfig(new HashMap<>(), eapIdentity); in getDummyEapSessionConfig()
|
D | EapAkaPrimeTest.java | 284 byte[] eapIdentity, boolean allowMismatchedNetworkNames, String peerNetworkName) { in setUp() argument 289 .setEapIdentity(eapIdentity) in setUp()
|
/packages/modules/IPsec/src/java/android/net/eap/ |
D | EapSessionConfig.java | 59 public EapSessionConfig(Map<Integer, EapMethodConfig> eapConfigs, byte[] eapIdentity) { in EapSessionConfig() argument 61 Objects.requireNonNull(eapIdentity, "eapIdentity must not be null"); in EapSessionConfig() 64 mEapIdentity = eapIdentity; in EapSessionConfig() 235 public Builder setEapIdentity(@NonNull byte[] eapIdentity) { in setEapIdentity() argument 236 Objects.requireNonNull(eapIdentity, "eapIdentity must not be null"); in setEapIdentity() 237 this.mEapIdentity = eapIdentity.clone(); in setEapIdentity()
|
/packages/modules/IPsec/src/java/com/android/internal/net/eap/statemachine/ |
D | EapAkaPrimeMethodStateMachine.java | 105 Context context, byte[] eapIdentity, EapAkaPrimeConfig eapAkaPrimeConfig) { in EapAkaPrimeMethodStateMachine() argument 108 eapIdentity, in EapAkaPrimeMethodStateMachine() 116 byte[] eapIdentity, in EapAkaPrimeMethodStateMachine() argument 119 super(context, eapIdentity, eapAkaPrimeConfig); in EapAkaPrimeMethodStateMachine()
|
D | EapSimMethodStateMachine.java | 98 byte[] eapIdentity, in EapSimMethodStateMachine() argument 103 eapIdentity, in EapSimMethodStateMachine() local 112 byte[] eapIdentity, in EapSimMethodStateMachine() argument 118 eapIdentity, in EapSimMethodStateMachine() local
|
D | EapAkaMethodStateMachine.java | 123 Context context, byte[] eapIdentity, EapAkaConfig eapAkaConfig) { in EapAkaMethodStateMachine() argument 124 this(context, eapIdentity, eapAkaConfig, false, null); in EapAkaMethodStateMachine() 129 byte[] eapIdentity, in EapAkaMethodStateMachine() argument 135 eapIdentity, in EapAkaMethodStateMachine() local 145 byte[] eapIdentity, in EapAkaMethodStateMachine() argument 152 eapIdentity, in EapAkaMethodStateMachine() local
|
D | EapStateMachine.java | 249 byte[] eapIdentity = getEapIdentity(); in getIdentityResponse() 250 LOG.d(mTAG, "Returning EAP-Identity: " + LOG.pii(eapIdentity)); in getIdentityResponse() 251 EapData identityData = new EapData(EAP_IDENTITY, eapIdentity); in getIdentityResponse()
|
D | EapSimAkaMethodStateMachine.java | 107 TelephonyManager telephonyManager, byte[] eapIdentity, EapUiccConfig eapUiccConfig) { in EapSimAkaMethodStateMachine() argument 110 } else if (eapIdentity == null) { in EapSimAkaMethodStateMachine() 116 this.mEapIdentity = eapIdentity; in EapSimAkaMethodStateMachine()
|
/packages/modules/Wifi/service/tests/wifitests/src/com/android/server/wifi/ |
D | SupplicantStaNetworkHalAidlImplTest.java | 1390 mSupplicantVariables.eapIdentity = identity; in setupISupplicantNetworkMock() 1395 return mSupplicantVariables.eapIdentity; in setupISupplicantNetworkMock() 1620 public byte[] eapIdentity; field in SupplicantStaNetworkHalAidlImplTest.SupplicantNetworkVariables
|
D | SupplicantStaNetworkHalHidlImplTest.java | 2034 mSupplicantVariables.eapIdentity = identity; in setupISupplicantNetworkMock() 2041 cb.onValues(mStatusSuccess, mSupplicantVariables.eapIdentity); in setupISupplicantNetworkMock() 2383 public ArrayList<Byte> eapIdentity; field in SupplicantStaNetworkHalHidlImplTest.SupplicantNetworkVariables
|