HomeSort by relevance Sort by last modified time
    Searched defs:authType (Results 1 - 10 of 10) sorted by null

  /frameworks/base/telephony/java/com/android/internal/telephony/
ApnSetting.java 35 public final int authType;
57 String user, String password, int authType, String[] types,
70 this.authType = authType;
88 * <mmsport>, <user>, <password>, <authtype>, <mcc>,<mnc>,
93 * <mmsport>, <user>, <password>, <authtype>, <mcc>, <mnc>,
118 int authType;
120 authType = Integer.parseInt(a[12]);
122 authType = 0;
152 a[9],a[4],a[5],authType,typeArray,protocol,roamingProtocol,carrierEnabled,bearer)
    [all...]
  /frameworks/base/telephony/java/com/android/internal/telephony/gsm/
GsmDataConnection.java 90 int authType = mApn.authType;
91 if (authType == -1) {
92 authType = (mApn.user != null) ? RILConstants.SETUP_DATA_AUTH_PAP_CHAP :
107 Integer.toString(authType),
  /frameworks/base/wifi/java/android/net/wifi/
WifiApConfigStore.java 154 int authType = in.readInt();
155 config.allowedKeyManagement.set(authType);
156 if (authType != KeyMgmt.NONE) {
183 int authType = config.getAuthType();
184 out.writeInt(authType);
185 if(authType != KeyMgmt.NONE) {
  /libcore/luni/src/main/java/org/apache/harmony/xnet/provider/jsse/
ClientHandshakeImpl.java 504 String authType = clientKey.getAlgorithm();
505 DigitalSignature ds = new DigitalSignature(authType);
508 if ("RSA".equals(authType)) {
511 } else if ("DSA".equals(authType)) {
514 // } else if ("DH".equals(authType)) {
527 String authType = session.cipherSuite.getAuthType(serverKeyExchange != null);
528 if (authType == null) {
532 parameters.getTrustManager().checkServerTrusted(serverCert.certs, authType);
ServerHandshakeImpl.java 145 String authType = clientCert.getAuthType();
148 clientCert.certs, authType);
171 String authType = clientCert.getAuthType();
172 DigitalSignature ds = new DigitalSignature(authType);
177 if ("RSA".equals(authType)) {
180 } else if ("DSA".equals(authType)) {
183 // } else if ("DH".equals(authType)) {
496 DigitalSignature ds = new DigitalSignature(cipher_suite.authType);
OpenSSLSocketImpl.java 596 String authType = peerCertificateChain[0].getPublicKey().getAlgorithm();
598 authType);
    [all...]
CipherSuite.java 46 final String authType;
    [all...]
  /libcore/luni/src/test/java/tests/api/javax/net/ssl/
HandshakeCompletedEventTest.java 566 private String authType;
568 public void checkClientTrusted(X509Certificate[] chain, String authType) {
570 this.authType = authType;
573 public void checkServerTrusted(X509Certificate[] chain, String authType) {
575 this.authType = authType;
587 return authType;
591 java.security.cert.X509Certificate[] chain, String authType)
597 java.security.cert.X509Certificate[] chain, String authType)
    [all...]
  /frameworks/base/tests/CoreTests/android/core/
SSLSocketTest.java 589 private String authType;
591 public void checkClientTrusted(X509Certificate[] chain, String authType) {
593 this.authType = authType;
596 public void checkServerTrusted(X509Certificate[] chain, String authType) {
598 this.authType = authType;
610 return authType;
    [all...]
  /prebuilt/common/http-client/
httpclient-4.1.1.jar 

Completed in 418 milliseconds