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

  /frameworks/opt/net/wifi/service/java/com/android/server/wifi/hotspot2/
LegacyPasspointConfig.java 35 public String mFqdn;
50 return TextUtils.equals(mFqdn, that.mFqdn)
59 return Objects.hash(mFqdn, mFriendlyName, mRoamingConsortiumOis, mRealm, mImsi);
  /frameworks/base/packages/SettingsLib/src/com/android/settingslib/wifi/
TestAccessPointBuilder.java 53 private String mFqdn = null;
82 if (mFqdn != null) {
83 bundle.putString(AccessPoint.KEY_FQDN, mFqdn);
201 mFqdn = fqdn;
AccessPoint.java 210 private String mFqdn;
260 mFqdn = savedState.getString(KEY_FQDN);
295 mFqdn = config.getHomeSp().getFqdn();
634 return mFqdn;
768 } else if (mFqdn != null) {
    [all...]
  /frameworks/base/wifi/java/android/net/wifi/hotspot2/pps/
HomeSp.java 54 private String mFqdn = null;
61 mFqdn = fqdn;
69 return mFqdn;
240 mFqdn = source.mFqdn;
269 dest.writeString(mFqdn);
289 return TextUtils.equals(mFqdn, that.mFqdn)
302 return Objects.hash(mFqdn, mFriendlyName, mIconUrl, mHomeNetworkIds, mMatchAllOis,
309 builder.append("FQDN: ").append(mFqdn).append("\n")
    [all...]
Policy.java 163 private String mFqdn = null;
165 mFqdn = fqdn;
168 return mFqdn;
213 mFqdn = source.mFqdn;
227 dest.writeString(mFqdn);
243 return TextUtils.equals(mFqdn, that.mFqdn)
251 return Objects.hash(mFqdn, mFqdnExactMatch, mPriority, mCountries);
257 builder.append("FQDN: ").append(mFqdn).append("\n")
    [all...]

Completed in 165 milliseconds