HomeSort by relevance Sort by last modified time
    Searched refs:mAuthType (Results 1 - 8 of 8) sorted by null

  /frameworks/opt/net/wifi/service/java/com/android/server/wifi/hotspot2/anqp/eap/
NonEAPInnerAuth.java 52 private final int mAuthType;
56 mAuthType = authType;
97 return mAuthType == that.mAuthType;
102 return mAuthType;
107 return "NonEAPInnerAuth{mAuthType=" + mAuthType + "}";
  /frameworks/base/telephony/java/android/telephony/data/
DataProfile.java 45 private final int mAuthType;
88 this.mAuthType = authType;
110 mAuthType = source.readInt();
147 public int getAuthType() { return mAuthType; }
232 return "DataProfile=" + mProfileId + "/" + mProtocol + "/" + mAuthType
252 dest.writeInt(mAuthType);
ApnSetting.java 226 private final int mAuthType;
438 return mAuthType;
550 this.mAuthType = builder.mAuthType;
663 apn.mPassword, apn.mAuthType, apn.mApnTypeBitmask, apn.mProtocol, apn.mRoamingProtocol,
682 .append(", ").append(mAuthType).append(", ");
761 && Objects.equals(mAuthType, other.mAuthType)
806 && Objects.equals(mAuthType, other.mAuthType)
    [all...]
  /packages/apps/Settings/src/com/android/settings/network/
ApnEditor.java 109 ListPreference mAuthType;
223 mAuthType = (ListPreference) findPreference(KEY_AUTH_TYPE);
411 return mAuthType;
460 mAuthType.setEnabled(false);
508 mAuthType.setValueIndex(authVal);
510 mAuthType.setValue(null);
564 String authVal = mAuthType.getValue();
567 mAuthType.setValueIndex(authValIndex);
570 mAuthType.setSummary(values[authValIndex]);
572 mAuthType.setSummary(sNotSet)
    [all...]
  /frameworks/av/media/libstagefright/rtsp/
ARTSPConnection.h 83 AuthType mAuthType;
ARTSPConnection.cpp 51 mAuthType(NONE),
328 mAuthType = NONE;
737 if (mAuthType == NONE && mUser.size() > 0
899 mAuthType = BASIC;
903 mAuthType = DIGEST;
959 if (mAuthType == NONE) {
967 if (mAuthType == BASIC) {
986 CHECK_EQ((int)mAuthType, (int)DIGEST);
MyTransmitter.h 83 mAuthType(NONE),
275 mAuthType = BASIC;
278 mAuthType = DIGEST;
294 if (mAuthType == NONE) {
298 if (mAuthType == BASIC) {
303 CHECK_EQ((int)mAuthType, (int)DIGEST);
385 if (mAuthType != NONE) {
844 AuthType mAuthType;
  /packages/apps/Settings/tests/robotests/src/com/android/settings/network/
ApnEditorTest.java 471 mApnEditorUT.mAuthType = new ListPreference(context);

Completed in 322 milliseconds