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.java73 private final int mAuthType; field in DataProfile
120 this.mAuthType = authType; in DataProfile()
140 mAuthType = source.readInt(); in DataProfile()
176 public @AuthType int getAuthType() { return mAuthType; } in getAuthType()
262 return "DataProfile=" + mProfileId + "/" + mProtocolType + "/" + mAuthType in toString()
276 dest.writeInt(mAuthType); in writeToParcel()
312 && mAuthType == that.mAuthType in equals()
331 return Objects.hash(mProfileId, mApn, mProtocolType, mAuthType, mUserName, mPassword, mType, in hashCode()
360 private int mAuthType; field in DataProfile.Builder
440 mAuthType = authType; in setAuthType()
[all …]
DApnSetting.java265 private final int mAuthType; field in ApnSetting
519 return mAuthType; in getAuthType()
652 this.mAuthType = builder.mAuthType; in ApnSetting()
799 apn.mMmsProxyPort, apn.mUser, apn.mPassword, apn.mAuthType, apn.mApnTypeBitmask, in makeApnSetting()
1034 .append(", ").append(mAuthType).append(", "); in toString()
1131 && Objects.equals(mAuthType, other.mAuthType) in equals()
1179 && Objects.equals(mAuthType, other.mAuthType) in equals()
1259 apnValue.put(Telephony.Carriers.AUTH_TYPE, mAuthType); in toContentValues()
1463 dest.writeInt(mAuthType); in writeToParcel()
1560 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.cpp52 mAuthType(NONE), in ARTSPConnection()
329 mAuthType = NONE; in performDisconnect()
738 if (mAuthType == NONE && mUser.size() > 0 in receiveRTSPReponse()
900 mAuthType = BASIC; in parseAuthMethod()
904 mAuthType = DIGEST; in parseAuthMethod()
960 if (mAuthType == NONE) { in addAuthentication()
968 if (mAuthType == BASIC) { in addAuthentication()
987 CHECK_EQ((int)mAuthType, (int)DIGEST); in addAuthentication()
DARTSPConnection.h83 AuthType mAuthType; member