Searched refs:authType (Results 1 - 24 of 24) sorted by relevance

/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/telephony/src/java/com/android/internal/telephony/dataconnection/
H A DDataProfile.java37 public final int authType; field in class:DataProfile
56 DataProfile(int profileId, String apn, String protocol, int authType, argument
63 this.authType = authType;
75 apn.authType, apn.user, apn.password, apn.bearerBitmask == 0
92 pc.writeInt(dps[i].authType);
106 return "DataProfile " + profileId + "/" + apn + "/" + protocol + "/" + authType
H A DApnSetting.java58 public final int authType; field in class:ApnSetting
130 String user, String password, int authType, String[] types,
145 this.authType = authType;
168 apn.mmsPort, apn.user, apn.password, apn.authType, apn.types, apn.protocol,
222 int authType;
224 authType = Integer.parseInt(a[12]);
226 authType = 0;
281 a[9],a[4],a[5],authType,typeArray,protocol,roamingProtocol,carrierEnabled,0,
322 .append(", ").append(authType)
127 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...]
H A DDataConnection.java476 int authType = mApnSetting.authType;
477 if (authType == -1) {
478 authType = TextUtils.isEmpty(mApnSetting.user) ? RILConstants.SETUP_DATA_AUTH_NONE
493 authType,
H A DDcTracker.java2176 initialAttachApnSetting.protocol, initialAttachApnSetting.authType,
3451 dest.authType, resultTypes.toArray(new String[0]), protocol,
/frameworks/opt/net/wifi/service/java/com/android/server/wifi/
H A DWifiApConfigStore.java144 int authType = in.readInt();
145 config.allowedKeyManagement.set(authType);
146 if (authType != KeyMgmt.NONE) {
175 int authType = config.getAuthType();
176 out.writeInt(authType);
177 if (authType != KeyMgmt.NONE) {
/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/opt/telephony/tests/telephonytests/src/com/android/internal/telephony/dataconnection/
H A DDataProfileTest.java88 assertEquals(mApn1.authType, dp.authType);
113 assertEquals("i = " + i, mApn1.authType, p.readInt());
H A DApnSettingTest.java101 assertEquals(a1.authType, a2.authType);
/frameworks/base/telephony/java/com/android/internal/telephony/
H A DIPhoneSubInfo.aidl199 * @param authType Authentication type, see PhoneConstants#AUTHTYPE_xxx
203 String getIccSimChallengeResponse(int subId, int appType, int authType, String data);
/frameworks/opt/telephony/src/java/com/android/internal/telephony/
H A DPhoneSubInfoController.java376 public String getIccSimChallengeResponse(int subId, int appType, int authType, String data) argument
396 if(authType != UiccCardApplication.AUTH_CONTEXT_EAP_SIM &&
397 authType != UiccCardApplication.AUTH_CONTEXT_EAP_AKA) {
398 loge("getIccSimChallengeResponse() unsupported authType: " + authType);
402 return uiccApp.getIccRecords().getIccSimChallengeResponse(authType, data);
H A DCommandsInterface.java1611 * @param authType
1620 String apn, String user, String password, int authType,
1764 * @param authType
1774 public void setInitialAttachApn(String apn, String protocol, int authType, String username, argument
1619 setupDataCall(int radioTechnology, int profile, String apn, String user, String password, int authType, String protocol, Message result) argument
H A DRIL.java1649 String user, String password, int authType, String protocol,
1661 rr.mParcel.writeString(Integer.toString(authType));
1667 + password + " " + authType + " " + protocol);
1670 radioTechnology, profile, apn, authType, protocol);
4891 public void setInitialAttachApn(String apn, String protocol, int authType, String username, argument
4899 rr.mParcel.writeInt(authType);
4904 + ", apn:" + apn + ", protocol:" + protocol + ", authType:" + authType
1648 setupDataCall(int radioTechnology, int profile, String apn, String user, String password, int authType, String protocol, Message result) argument
/frameworks/base/core/java/android/net/
H A DSSLCertificateSocketFactory.java79 public void checkClientTrusted(X509Certificate[] certs, String authType) { }
80 public void checkServerTrusted(X509Certificate[] certs, String authType) { }
/frameworks/base/packages/Osu/src/com/android/hotspot2/osu/
H A DOSUSocketFactory.java229 public void checkClientTrusted(X509Certificate[] chain, String authType) argument
235 public void checkServerTrusted(X509Certificate[] chain, String authType) argument
/frameworks/opt/telephony/src/java/com/android/internal/telephony/sip/
H A DSipCommandInterface.java263 String apn, String user, String password, int authType,
567 public void setInitialAttachApn(String apn, String protocol, int authType, String username, argument
262 setupDataCall(int radioTechnology, int profile, String apn, String user, String password, int authType, String protocol, Message result) argument
/frameworks/opt/telephony/src/java/com/android/internal/telephony/imsphone/
H A DImsPhoneCommandInterface.java262 String apn, String user, String password, int authType,
566 public void setInitialAttachApn(String apn, String protocol, int authType, String username, argument
261 setupDataCall(int radioTechnology, int profile, String apn, String user, String password, int authType, String protocol, Message result) argument
/frameworks/opt/telephony/tests/telephonytests/src/com/android/internal/telephony/gsm/
H A DUsimDataDownloadCommands.java.broken600 String password, String authType, String protocol, Message result) {
648 public void setInitialAttachApn(String apn, String protocol, int authType, String username,
/frameworks/opt/telephony/src/java/com/android/internal/telephony/test/
H A DSimulatedCommandsVerifier.java1148 String password, int authType, String protocol, Message result) {
1224 public void setInitialAttachApn(String apn, String protocol, int authType, String username, argument
1147 setupDataCall(int radioTechnology, int profile, String apn, String user, String password, int authType, String protocol, Message result) argument
H A DSimulatedCommands.java1090 String apn, String user, String password, int authType,
1093 password, authType, protocol, result);
1840 public void setInitialAttachApn(String apn, String protocol, int authType, String username, argument
1089 setupDataCall(int radioTechnology, int profile, String apn, String user, String password, int authType, String protocol, Message result) argument
/frameworks/base/telephony/java/android/telephony/
H A DTelephonyManager.java3925 * @param authType the authentication type, {@link #AUTHTYPE_EAP_AKA} or
3933 public String getIccAuthentication(int appType, int authType, String data) { argument
3934 return getIccAuthentication(getSubId(), appType, authType, data);
3945 * @param authType the authentication type, {@link #AUTHTYPE_EAP_AKA} or
3954 public String getIccAuthentication(int subId, int appType, int authType, String data) { argument
3959 return info.getIccSimChallengeResponse(subId, appType, authType, data);
/frameworks/opt/telephony/src/java/com/android/internal/telephony/metrics/
H A DTelephonyMetrics.java952 * @param authType Authentication type
956 String apn, int authType, String protocol) {
955 writeRilSetupDataCall(int phoneId, int rilSerial, int radioTechnology, int profile, String apn, int authType, String protocol) argument

Completed in 622 milliseconds