Searched defs:authType (Results 1 - 13 of 13) sorted by relevance

/frameworks/base/core/tests/coretests/src/android/net/http/
H A DX509TrustManagerExtensionsTest.java34 public void checkClientTrusted(X509Certificate[] chain, String authType) {} argument
36 public void checkServerTrusted(X509Certificate[] chain, String authType) {} argument
/frameworks/base/core/java/android/net/http/
H A DX509TrustManagerExtensions.java91 * description of the chain and authType parameters. The final parameter, host, should be the
97 public List<X509Certificate> checkServerTrusted(X509Certificate[] chain, String authType, argument
100 return mDelegate.checkServerTrusted(chain, authType, host);
104 authType, host);
/frameworks/base/core/java/android/security/net/config/
H A DRootTrustManager.java51 public void checkClientTrusted(X509Certificate[] chain, String authType) argument
56 config.getTrustManager().checkClientTrusted(chain, authType);
60 public void checkClientTrusted(X509Certificate[] certs, String authType, Socket socket) argument
65 config.getTrustManager().checkClientTrusted(certs, authType, socket);
69 public void checkClientTrusted(X509Certificate[] certs, String authType, SSLEngine engine) argument
74 config.getTrustManager().checkClientTrusted(certs, authType, engine);
78 public void checkServerTrusted(X509Certificate[] certs, String authType, Socket socket) argument
88 config.getTrustManager().checkServerTrusted(certs, authType, socket);
91 checkServerTrusted(certs, authType);
96 public void checkServerTrusted(X509Certificate[] certs, String authType, SSLEngin argument
108 checkServerTrusted(X509Certificate[] certs, String authType) argument
124 checkServerTrusted(X509Certificate[] certs, String authType, String hostname) argument
[all...]
H A DNetworkSecurityTrustManager.java67 public void checkClientTrusted(X509Certificate[] chain, String authType) argument
69 mDelegate.checkClientTrusted(chain, authType);
73 public void checkClientTrusted(X509Certificate[] certs, String authType, Socket socket) argument
75 mDelegate.checkClientTrusted(certs, authType, socket);
79 public void checkClientTrusted(X509Certificate[] certs, String authType, SSLEngine engine) argument
81 mDelegate.checkClientTrusted(certs, authType, engine);
85 public void checkServerTrusted(X509Certificate[] certs, String authType) argument
87 checkServerTrusted(certs, authType, (String) null);
91 public void checkServerTrusted(X509Certificate[] certs, String authType, Socket socket) argument
94 mDelegate.getTrustedChainForServer(certs, authType, socke
99 checkServerTrusted(X509Certificate[] certs, String authType, SSLEngine engine) argument
111 checkServerTrusted(X509Certificate[] certs, String authType, String host) argument
[all...]
/frameworks/opt/net/wifi/service/java/com/android/server/wifi/hotspot2/anqp/eap/
H A DExpandedEAPMethod.java42 public ExpandedEAPMethod(int authType, int vendorID, long vendorType) { argument
43 super(authType);
71 int authType = inner ? AuthParam.PARAM_TYPE_EXPANDED_INNER_EAP_METHOD
73 return new ExpandedEAPMethod(authType, vendorID, vendorType);
H A DNonEAPInnerAuth.java54 public NonEAPInnerAuth(int authType) { argument
56 mAuthType = authType;
71 int authType = payload.get() & 0xFF;
72 return new NonEAPInnerAuth(authType);
H A DCredentialType.java52 public CredentialType(int authType, int credType) { argument
53 super(authType);
73 int authType = tunneled ? AuthParam.PARAM_TYPE_TUNNELED_EAP_METHOD_CREDENTIAL_TYPE
75 return new CredentialType(authType, credType);
/frameworks/opt/telephony/src/java/com/android/internal/telephony/dataconnection/
H A DDataProfile.java39 public final int authType; field in class:DataProfile
74 DataProfile(int profileId, String apn, String protocol, int authType, argument
83 if (authType == -1) {
84 authType = TextUtils.isEmpty(user) ? RILConstants.SETUP_DATA_AUTH_NONE
87 this.authType = authType;
111 apn.authType, apn.user, apn.password, apn.bearerBitmask == 0
121 return "DataProfile=" + profileId + "/" + apn + "/" + protocol + "/" + authType
H A DApnSetting.java57 public final int authType; field in class:ApnSetting
118 String user, String password, int authType, String[] types,
134 this.authType = authType;
160 apn.mmsPort, apn.user, apn.password, apn.authType, apn.types, apn.protocol,
214 int authType;
216 authType = Integer.parseInt(a[12]);
218 authType = 0;
273 a[9],a[4],a[5],authType,typeArray,protocol,roamingProtocol,carrierEnabled,0,
314 .append(", ").append(authType)
115 ApnSetting(int id, String numeric, String carrier, String apn, String proxy, String port, String mmsc, String mmsProxy, String mmsPort, String user, String password, int authType, String[] types, String protocol, String roamingProtocol, boolean carrierEnabled, int bearer, int bearerBitmask, int profileId, boolean modemCognitive, int maxConns, int waitTime, int maxConnsTime, int mtu, String mvnoType, String mvnoMatchData) argument
[all...]
/frameworks/base/packages/Osu/src/com/android/hotspot2/osu/
H A DOSUSocketFactory.java232 public void checkClientTrusted(X509Certificate[] chain, String authType) argument
238 public void checkServerTrusted(X509Certificate[] chain, String authType) argument
/frameworks/opt/telephony/src/java/com/android/internal/telephony/
H A DPhoneSubInfoController.java377 public String getIccSimChallengeResponse(int subId, int appType, int authType, String data) argument
397 if(authType != UiccCardApplication.AUTH_CONTEXT_EAP_SIM &&
398 authType != UiccCardApplication.AUTH_CONTEXT_EAP_AKA) {
399 loge("getIccSimChallengeResponse() unsupported authType: " + authType);
403 return uiccApp.getIccRecords().getIccSimChallengeResponse(authType, data);
/frameworks/opt/telephony/src/java/com/android/internal/telephony/metrics/
H A DTelephonyMetrics.java1011 * @param authType Authentication type
1015 String apn, int authType, String protocol) {
1014 writeRilSetupDataCall(int phoneId, int rilSerial, int radioTechnology, int profile, String apn, int authType, String protocol) argument
/frameworks/base/telephony/java/android/telephony/
H A DTelephonyManager.java4378 * @param authType the authentication type, {@link #AUTHTYPE_EAP_AKA} or
4386 public String getIccAuthentication(int appType, int authType, String data) { argument
4387 return getIccAuthentication(getSubId(), appType, authType, data);
4398 * @param authType the authentication type, {@link #AUTHTYPE_EAP_AKA} or
4407 public String getIccAuthentication(int subId, int appType, int authType, String data) { argument
4412 return info.getIccSimChallengeResponse(subId, appType, authType, data);

Completed in 285 milliseconds