Home
last modified time | relevance | path

Searched refs:authType (Results 1 – 18 of 18) sorted by relevance

/frameworks/base/core/java/android/security/net/config/
DRootTrustManager.java52 public void checkClientTrusted(X509Certificate[] chain, String authType) in checkClientTrusted() argument
57 config.getTrustManager().checkClientTrusted(chain, authType); in checkClientTrusted()
61 public void checkClientTrusted(X509Certificate[] certs, String authType, Socket socket) in checkClientTrusted() argument
66 config.getTrustManager().checkClientTrusted(certs, authType, socket); in checkClientTrusted()
70 public void checkClientTrusted(X509Certificate[] certs, String authType, SSLEngine engine) in checkClientTrusted() argument
75 config.getTrustManager().checkClientTrusted(certs, authType, engine); in checkClientTrusted()
79 public void checkServerTrusted(X509Certificate[] certs, String authType, Socket socket) in checkServerTrusted() argument
89 config.getTrustManager().checkServerTrusted(certs, authType, socket); in checkServerTrusted()
92 checkServerTrusted(certs, authType); in checkServerTrusted()
97 public void checkServerTrusted(X509Certificate[] certs, String authType, SSLEngine engine) in checkServerTrusted() argument
[all …]
DNetworkSecurityTrustManager.java67 public void checkClientTrusted(X509Certificate[] chain, String authType) in checkClientTrusted() argument
69 mDelegate.checkClientTrusted(chain, authType); in checkClientTrusted()
73 public void checkClientTrusted(X509Certificate[] certs, String authType, Socket socket) in checkClientTrusted() argument
75 mDelegate.checkClientTrusted(certs, authType, socket); in checkClientTrusted()
79 public void checkClientTrusted(X509Certificate[] certs, String authType, SSLEngine engine) in checkClientTrusted() argument
81 mDelegate.checkClientTrusted(certs, authType, engine); in checkClientTrusted()
85 public void checkServerTrusted(X509Certificate[] certs, String authType) in checkServerTrusted() argument
87 checkServerTrusted(certs, authType, (String) null); in checkServerTrusted()
91 public void checkServerTrusted(X509Certificate[] certs, String authType, Socket socket) in checkServerTrusted() argument
94 mDelegate.getTrustedChainForServer(certs, authType, socket); in checkServerTrusted()
[all …]
/frameworks/opt/net/wifi/service/java/com/android/server/wifi/hotspot2/anqp/eap/
DCredentialType.java52 public CredentialType(int authType, int credType) { in CredentialType() argument
53 super(authType); in CredentialType()
73 int authType = tunneled ? AuthParam.PARAM_TYPE_TUNNELED_EAP_METHOD_CREDENTIAL_TYPE in parse() local
75 return new CredentialType(authType, credType); in parse()
DNonEAPInnerAuth.java54 public NonEAPInnerAuth(int authType) { in NonEAPInnerAuth() argument
56 mAuthType = authType; in NonEAPInnerAuth()
71 int authType = payload.get() & 0xFF; in parse() local
72 return new NonEAPInnerAuth(authType); in parse()
DExpandedEAPMethod.java42 public ExpandedEAPMethod(int authType, int vendorID, long vendorType) { in ExpandedEAPMethod() argument
43 super(authType); in ExpandedEAPMethod()
71 int authType = inner ? AuthParam.PARAM_TYPE_EXPANDED_INNER_EAP_METHOD in parse() local
73 return new ExpandedEAPMethod(authType, vendorID, vendorType); in parse()
/frameworks/opt/net/wifi/service/java/com/android/server/wifi/
DWifiApConfigStore.java289 int authType = in.readInt(); in loadApConfiguration() local
290 config.allowedKeyManagement.set(authType); in loadApConfiguration()
291 if (authType != KeyMgmt.NONE) { in loadApConfiguration()
321 int authType = config.getAuthType(); in writeApConfiguration() local
322 out.writeInt(authType); in writeApConfiguration()
323 if (authType != KeyMgmt.NONE) { in writeApConfiguration()
444 int authType; in validateApWifiConfiguration() local
447 authType = apConfig.getAuthType(); in validateApWifiConfiguration()
453 if (authType == KeyMgmt.NONE) { in validateApWifiConfiguration()
459 } else if (authType == KeyMgmt.WPA2_PSK) { in validateApWifiConfiguration()
/frameworks/base/core/java/android/net/http/
DX509TrustManagerExtensions.java95 public List<X509Certificate> checkServerTrusted(X509Certificate[] chain, String authType, in checkServerTrusted() argument
98 return mDelegate.checkServerTrusted(chain, authType, host); in checkServerTrusted()
102 authType, host); in checkServerTrusted()
/frameworks/base/telephony/java/android/telephony/data/
DDataProfile.java106 private DataProfile(int profileId, String apn, @ProtocolType int protocolType, int authType, in DataProfile() argument
116 if (authType == -1) { in DataProfile()
117 authType = TextUtils.isEmpty(userName) ? RILConstants.SETUP_DATA_AUTH_NONE in DataProfile()
120 this.mAuthType = authType; in DataProfile()
439 public @NonNull Builder setAuthType(@AuthType int authType) { in setAuthType() argument
440 mAuthType = authType; in setAuthType()
DApnSetting.java679 int authType, int mApnTypeBitmask, int protocol, int roamingProtocol, in makeApnSetting() argument
695 .setAuthType(authType) in makeApnSetting()
721 int authType, int mApnTypeBitmask, int protocol, int roamingProtocol, in makeApnSetting() argument
726 mmsc, mmsProxyAddress, mmsProxyPort, user, password, authType, mApnTypeBitmask, in makeApnSetting()
898 int authType; in fromString() local
900 authType = Integer.parseInt(a[12]); in fromString()
902 authType = 0; in fromString()
983 portFromString(a[9]), a[4], a[5], authType, in fromString()
1487 final int authType = in.readInt(); in readFromParcel() local
1499 proxy, port, mmsc, mmsProxy, mmsPort, user, password, authType, apnTypesBitmask, in readFromParcel()
[all …]
/frameworks/base/core/tests/coretests/src/android/net/http/
DX509TrustManagerExtensionsTest.java34 public void checkClientTrusted(X509Certificate[] chain, String authType) {} in checkClientTrusted() argument
36 public void checkServerTrusted(X509Certificate[] chain, String authType) {} in checkServerTrusted() argument
/frameworks/opt/telephony/src/java/com/android/internal/telephony/
DPhoneSubInfoController.java334 public String getIccSimChallengeResponse(int subId, int appType, int authType, String data)
352 if (authType != UiccCardApplication.AUTH_CONTEXT_EAP_SIM
353 && authType != UiccCardApplication.AUTH_CONTEXT_EAP_AKA) {
354 loge("getIccSimChallengeResponse() unsupported authType: " + authType);
357 return uiccApp.getIccRecords().getIccSimChallengeResponse(authType, data);
DRIL.java1394 dpi.authType = dp.getAuthType(); in convertToHalDataProfile10()
1428 dpi.authType = dp.getAuthType(); in convertToHalDataProfile14()
/frameworks/opt/net/wifi/service/java/com/android/server/wifi/hotspot2/
DOsuServerConnection.java555 public void checkClientTrusted(X509Certificate[] chain, String authType) in checkClientTrusted() argument
558 Log.v(TAG, "checkClientTrusted " + authType); in checkClientTrusted()
563 public void checkServerTrusted(X509Certificate[] chain, String authType) in checkServerTrusted() argument
566 Log.v(TAG, "checkServerTrusted " + authType); in checkServerTrusted()
571 mServerCerts = mDelegate.getTrustedChainForServer(chain, authType, in checkServerTrusted()
/frameworks/base/telephony/java/com/android/internal/telephony/
DIPhoneSubInfo.aidl203 String getIccSimChallengeResponse(int subId, int appType, int authType, String data); in getIccSimChallengeResponse() argument
/frameworks/base/core/java/android/net/
DSSLCertificateSocketFactory.java109 public void checkClientTrusted(X509Certificate[] certs, String authType) { }
110 public void checkServerTrusted(X509Certificate[] certs, String authType) { }
/frameworks/opt/telephony/tests/telephonytests/src/com/android/internal/telephony/gsm/
DUsimDataDownloadCommands.java.broken596 String password, String authType, String protocol, Message result) {
644 public void setInitialAttachApn(String apn, String protocol, int authType, String username,
/frameworks/base/telephony/java/android/telephony/
DTelephonyManager.java6506 public String getIccAuthentication(int appType, int authType, String data) { in getIccAuthentication() argument
6507 return getIccAuthentication(getSubId(), appType, authType, data); in getIccAuthentication()
6532 public String getIccAuthentication(int subId, int appType, int authType, String data) { in getIccAuthentication() argument
6537 return info.getIccSimChallengeResponse(subId, appType, authType, data); in getIccAuthentication()
/frameworks/opt/telephony/tests/telephonytests/src/com/android/internal/telephony/
DRILTest.java1885 assertEquals(AUTH_TYPE, dpi.authType); in testSetupDataCall()