HomeSort by relevance Sort by last modified time
    Searched refs:mFqdn (Results 1 - 9 of 9) 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);
LegacyPasspointConfigParser.java 216 configs.put(config.mFqdn, config);
307 if (config.mFqdn == null) {
329 config.mFqdn = getValue(node);
  /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...]
  /frameworks/base/packages/SettingsLib/tests/integ/src/com/android/settingslib/wifi/
TestAccessPointBuilder.java 43 private String mFqdn = null;
64 if (mFqdn != null) {
65 bundle.putString(AccessPoint.KEY_FQDN, mFqdn);
150 mFqdn = fqdn;
  /frameworks/opt/net/wifi/tests/wifitests/src/com/android/server/wifi/hotspot2/
LegacyPasspointConfigParserTest.java 87 config1.mFqdn = "test1.net";
94 config2.mFqdn = "test2.net";
  /frameworks/base/packages/Osu/src/com/android/hotspot2/osu/service/
RemediationHandler.java 440 private final String mFqdn;
449 mFqdn = segments[0];
455 mFqdn = fqdn;
461 return mFqdn;
474 return String.format("%s %c %d", mFqdn, mPolicy ? '1' : '0', mLastUpdate);
  /frameworks/base/packages/SettingsLib/src/com/android/settingslib/wifi/
AccessPoint.java 161 private String mFqdn;
192 mFqdn = savedState.getString(KEY_FQDN);
215 mFqdn = config.getHomeSp().getFqdn();
439 return mFqdn;
593 } else if (mFqdn != null) {
    [all...]
  /frameworks/opt/net/wifi/tests/wifitests/src/com/android/server/wifi/
WifiConfigStoreLegacyTest.java 120 passpointConfig.mFqdn = fqdn;

Completed in 188 milliseconds