Home
last modified time | relevance | path

Searched refs:mAuthType (Results 1 – 6 of 6) sorted by relevance

/frameworks/opt/net/wifi/service/java/com/android/server/wifi/hotspot2/anqp/eap/
DNonEAPInnerAuth.java52 private final int mAuthType; field in NonEAPInnerAuth
56 mAuthType = authType; in NonEAPInnerAuth()
97 return mAuthType == that.mAuthType; in equals()
102 return mAuthType; in hashCode()
107 return "NonEAPInnerAuth{mAuthType=" + mAuthType + "}"; in toString()
/frameworks/base/telephony/java/android/telephony/data/
DDataProfile.java45 private final int mAuthType; field in DataProfile
88 this.mAuthType = authType; in DataProfile()
110 mAuthType = source.readInt(); in DataProfile()
147 public int getAuthType() { return mAuthType; } in getAuthType()
232 return "DataProfile=" + mProfileId + "/" + mProtocol + "/" + mAuthType in toString()
252 dest.writeInt(mAuthType); in writeToParcel()
DApnSetting.java226 private final int mAuthType; field in ApnSetting
438 return mAuthType; in getAuthType()
550 this.mAuthType = builder.mAuthType; in ApnSetting()
663 … apn.mPassword, apn.mAuthType, apn.mApnTypeBitmask, apn.mProtocol, apn.mRoamingProtocol, in makeApnSetting()
682 .append(", ").append(mAuthType).append(", "); in toString()
761 && Objects.equals(mAuthType, other.mAuthType) in equals()
806 && Objects.equals(mAuthType, other.mAuthType) in equals()
895 apnValue.put(Telephony.Carriers.AUTH_TYPE, mAuthType); in toContentValues()
1004 dest.writeInt(mAuthType); in writeToParcel()
1099 private int mAuthType; field in ApnSetting.Builder
[all …]
/frameworks/av/media/libstagefright/rtsp/
DMyTransmitter.h83 mAuthType(NONE), in MyTransmitter()
275 mAuthType = BASIC; in authenticate()
278 mAuthType = DIGEST; in authenticate()
294 if (mAuthType == NONE) { in addAuthentication()
298 if (mAuthType == BASIC) { in addAuthentication()
303 CHECK_EQ((int)mAuthType, (int)DIGEST); in addAuthentication()
385 if (mAuthType != NONE) { in onMessageReceived()
844 AuthType mAuthType; in onMessageReceived() member
DARTSPConnection.cpp51 mAuthType(NONE), in ARTSPConnection()
328 mAuthType = NONE; in performDisconnect()
737 if (mAuthType == NONE && mUser.size() > 0 in receiveRTSPReponse()
899 mAuthType = BASIC; in parseAuthMethod()
903 mAuthType = DIGEST; in parseAuthMethod()
959 if (mAuthType == NONE) { in addAuthentication()
967 if (mAuthType == BASIC) { in addAuthentication()
986 CHECK_EQ((int)mAuthType, (int)DIGEST); in addAuthentication()
DARTSPConnection.h83 AuthType mAuthType; member