/frameworks/base/core/java/android/security/net/config/ |
D | RootTrustManager.java | 52 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 …]
|
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 | 289 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/ |
D | X509TrustManagerExtensions.java | 95 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/ |
D | DataProfile.java | 106 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()
|
D | ApnSetting.java | 679 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/ |
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 | 334 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);
|
D | RIL.java | 1394 dpi.authType = dp.getAuthType(); in convertToHalDataProfile10() 1428 dpi.authType = dp.getAuthType(); in convertToHalDataProfile14()
|
/frameworks/opt/net/wifi/service/java/com/android/server/wifi/hotspot2/ |
D | OsuServerConnection.java | 555 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/ |
D | IPhoneSubInfo.aidl | 203 String getIccSimChallengeResponse(int subId, int appType, int authType, String data); in getIccSimChallengeResponse() argument
|
/frameworks/base/core/java/android/net/ |
D | SSLCertificateSocketFactory.java | 109 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/ |
D | UsimDataDownloadCommands.java.broken | 596 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/ |
D | TelephonyManager.java | 6506 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/ |
D | RILTest.java | 1885 assertEquals(AUTH_TYPE, dpi.authType); in testSetupDataCall()
|