/frameworks/base/core/java/android/security/net/config/ |
D | RootTrustManager.java | 51 public void checkClientTrusted(X509Certificate[] chain, String authType) in checkClientTrusted() argument 56 config.getTrustManager().checkClientTrusted(chain, authType); in checkClientTrusted() 60 public void checkClientTrusted(X509Certificate[] certs, String authType, Socket socket) in checkClientTrusted() argument 65 config.getTrustManager().checkClientTrusted(certs, authType, socket); in checkClientTrusted() 69 public void checkClientTrusted(X509Certificate[] certs, String authType, SSLEngine engine) in checkClientTrusted() argument 74 config.getTrustManager().checkClientTrusted(certs, authType, engine); in checkClientTrusted() 78 public void checkServerTrusted(X509Certificate[] certs, String authType, Socket socket) in checkServerTrusted() argument 88 config.getTrustManager().checkServerTrusted(certs, authType, socket); in checkServerTrusted() 91 checkServerTrusted(certs, authType); in checkServerTrusted() 96 public void checkServerTrusted(X509Certificate[] certs, String authType, SSLEngine engine) in checkServerTrusted() argument [all …]
|
D | NetworkSecurityTrustManager.java | 67 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/ |
D | CredentialType.java | 52 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()
|
D | NonEAPInnerAuth.java | 54 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()
|
D | ExpandedEAPMethod.java | 42 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/ |
D | WifiApConfigStore.java | 201 int authType = in.readInt(); in loadApConfiguration() local 202 config.allowedKeyManagement.set(authType); in loadApConfiguration() 203 if (authType != KeyMgmt.NONE) { in loadApConfiguration() 232 int authType = config.getAuthType(); in writeApConfiguration() local 233 out.writeInt(authType); in writeApConfiguration() 234 if (authType != KeyMgmt.NONE) { in writeApConfiguration() 355 int authType; in validateApWifiConfiguration() local 358 authType = apConfig.getAuthType(); in validateApWifiConfiguration() 364 if (authType == KeyMgmt.NONE) { in validateApWifiConfiguration() 370 } else if (authType == KeyMgmt.WPA2_PSK) { in validateApWifiConfiguration()
|
/frameworks/opt/telephony/src/java/com/android/internal/telephony/dataconnection/ |
D | ApnSetting.java | 66 public final int authType; field in ApnSetting 157 String user, String password, int authType, String[] types, in ApnSetting() argument 173 this.authType = authType; in ApnSetting() 203 String user, String password, int authType, String[] types, in ApnSetting() argument 209 authType, types, protocol, roamingProtocol, carrierEnabled, networkTypeBitmask, in ApnSetting() 217 String user, String password, int authType, String[] types, in ApnSetting() argument 233 this.authType = authType; in ApnSetting() 261 apn.mmsPort, apn.user, apn.password, apn.authType, apn.types, apn.protocol, in ApnSetting() 335 int authType; in fromString() local 337 authType = Integer.parseInt(a[12]); in fromString() [all …]
|
D | DcTracker.java | 3427 dest.authType, resultTypes.toArray(new String[0]), protocol, in mergeApns() 4896 apn.authType, apn.user, apn.password, profileType, in createDataProfile()
|
/frameworks/opt/net/wifi/service/java/com/android/server/wifi/hotspot2/ |
D | OsuServerConnection.java | 156 public void checkClientTrusted(X509Certificate[] chain, String authType) in checkClientTrusted() argument 159 Log.v(TAG, "checkClientTrusted " + authType); in checkClientTrusted() 164 public void checkServerTrusted(X509Certificate[] chain, String authType) in checkServerTrusted() argument 167 Log.v(TAG, "checkServerTrusted " + authType); in checkServerTrusted() 172 mServerCerts = mDelegate.getTrustedChainForServer(chain, authType, in checkServerTrusted()
|
/frameworks/base/core/java/android/net/http/ |
D | X509TrustManagerExtensions.java | 96 public List<X509Certificate> checkServerTrusted(X509Certificate[] chain, String authType, in checkServerTrusted() argument 99 return mDelegate.checkServerTrusted(chain, authType, host); in checkServerTrusted() 103 authType, host); in checkServerTrusted()
|
/frameworks/base/telephony/java/android/telephony/data/ |
D | DataProfile.java | 75 public DataProfile(int profileId, String apn, String protocol, int authType, in DataProfile() argument 84 if (authType == -1) { in DataProfile() 85 authType = TextUtils.isEmpty(userName) ? RILConstants.SETUP_DATA_AUTH_NONE in DataProfile() 88 this.mAuthType = authType; in DataProfile()
|
D | ApnSetting.java | 571 int mmsPort, String user, String password, int authType, int mApnTypeBitmask, in makeApnSetting() argument 587 .setAuthType(authType) in makeApnSetting() 1025 final int authType = in.readInt(); in readFromParcel() local 1034 proxy, port, mmsc, mmsProxy, mmsPort, user, password, authType, apnTypesBitmask, in readFromParcel() 1321 public Builder setAuthType(@AuthType int authType) { in setAuthType() argument 1322 this.mAuthType = authType; in setAuthType()
|
/frameworks/base/core/tests/coretests/src/android/net/http/ |
D | X509TrustManagerExtensionsTest.java | 34 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/ |
D | PhoneSubInfoController.java | 462 public String getIccSimChallengeResponse(int subId, int appType, int authType, String data) in getIccSimChallengeResponse() argument 485 if(authType != UiccCardApplication.AUTH_CONTEXT_EAP_SIM && in getIccSimChallengeResponse() 486 authType != UiccCardApplication.AUTH_CONTEXT_EAP_AKA) { in getIccSimChallengeResponse() 487 loge("getIccSimChallengeResponse() unsupported authType: " + authType); in getIccSimChallengeResponse() 491 return uiccApp.getIccRecords().getIccSimChallengeResponse(authType, data); in getIccSimChallengeResponse()
|
D | RIL.java | 1135 dpi.authType = dp.getAuthType(); in convertToHalDataProfile()
|
/frameworks/base/telephony/java/com/android/internal/telephony/ |
D | IPhoneSubInfo.aidl | 211 String getIccSimChallengeResponse(int subId, int appType, int authType, String data); in getIccSimChallengeResponse() argument
|
/frameworks/base/core/java/android/net/ |
D | SSLCertificateSocketFactory.java | 87 public void checkClientTrusted(X509Certificate[] certs, String authType) { } 88 public void checkServerTrusted(X509Certificate[] certs, String authType) { }
|
/frameworks/opt/telephony/tests/telephonytests/src/com/android/internal/telephony/gsm/ |
D | UsimDataDownloadCommands.java.broken | 600 String password, String authType, String protocol, Message result) { 648 public void setInitialAttachApn(String apn, String protocol, int authType, String username,
|
/frameworks/opt/telephony/tests/telephonytests/src/com/android/internal/telephony/dataconnection/ |
D | ApnSettingTest.java | 120 assertEquals(a1.authType, a2.authType); in assertApnSettingEqual()
|
/frameworks/opt/telephony/tests/telephonytests/src/com/android/internal/telephony/ |
D | RILTest.java | 1687 assertEquals(AUTH_TYPE, dpi.authType); in testSetupDataCall()
|