Searched refs:FQDN (Results 1 - 19 of 19) sorted by relevance

/frameworks/opt/net/wifi/service/java/com/android/server/wifi/
H A DConfigurationMap.java44 if (config.FQDN != null && config.FQDN.length() > 0) {
45 mPerFQDNForCurrentUser.put(config.FQDN, config);
104 if (config.FQDN != null && config.FQDN.length() > 0) {
105 mPerFQDNForCurrentUser.put(config.FQDN, config);
H A DWifiConfigManager.java494 .setPasspointManagementObjectTree(mMOManager.getMOTree(configuration.FQDN));
496 Log.w(TAG, "Failed to parse MO from " + configuration.FQDN + ": " + ioe);
911 Long csum = getChecksum(config.FQDN);
913 config.enterpriseConfig.setDomainSuffixMatch(config.FQDN);
1153 writePasspointConfigs(config.FQDN, null);
1653 // 2) mConfiguredNetworks caches a Passpoint network's FQDN the moment the network is added.
1776 config.FQDN = fqdn;
1938 if (mMOManager.getHomeSP(config.FQDN) != null) {
1939 logd("addOrUpdateNetworkNative passpoint " + config.FQDN
1985 currentConfig.FQDN
[all...]
H A DWifiNetworkHistory.java86 private static final String FQDN_KEY = "FQDN";
198 if (config.FQDN != null) {
199 out.writeUTF(FQDN_KEY + SEPARATOR + config.FQDN + NL);
402 config.FQDN = value.equals("null") ? null : value;
H A DWifiConfigStore.java407 // just a quoted FQDN. This is the legacy format that was used in Marshmallow.
412 config.FQDN = fqdn;
593 metadata.put(ID_STRING_KEY_FQDN, config.FQDN);
H A DWifiServiceImpl.java1007 * @param fqdn The FQDN of the service provider
1025 * Match the currently associated network against the SP matching the given FQDN
1026 * @param fqdn FQDN of the SP
1786 if (!TextUtils.isEmpty(config.FQDN)) {
1790 "' FQDN " + toHexString(config.FQDN);
H A DWifiQualifiedNetworkSelector.java432 + network.BSSID + " FQDN:" + network.FQDN + " "
H A DWifiStateMachine.java1924 bundle.putString("FQDN", fqdn);
6260 res = mWifiConfigManager.modifyPasspointMo(bundle.getString("FQDN"), mos);
8257 if (config != null && config.FQDN != null) {
8259 mWifiConfigManager.matchProviderWithCurrentNetwork(config.FQDN));
/frameworks/opt/net/wifi/tests/wifitests/assets/
H A Dr1.PerProviderSubscription.conf7 4:FQDN=b:twcwifi.com
69 4:FQDN=9:wi-fi.org
H A Dr2.PerProviderSubscription.conf52 4:FQDN=9:wi-fi.org
76 4:FQDN=b:twcwifi.com
H A Druckus.PerProviderSubscription.conf52 4:FQDN=9:wi-fi.org
/frameworks/opt/net/wifi/tests/wifitests/src/com/android/server/wifi/
H A DConfigurationMapTest.java136 if (config.FQDN != null) {
137 assertEquals(config, mConfigs.getByFQDNForCurrentUser(config.FQDN));
152 if (config.FQDN != null) {
153 assertNull(mConfigs.getByFQDNForCurrentUser(config.FQDN));
H A DWifiConfigurationTestUtil.java42 * @param fqdn the configuration's FQDN (Hotspot 2.0 only)
56 config.FQDN = fqdn;
70 * @param fqdn the configuration's FQDN (Hotspot 2.0 only)
H A DWifiConfigManagerTest.java266 assertEquals(expectedConfig.FQDN, actualConfig.FQDN);
473 if (CONFIGS.get(network).FQDN != null) {
474 metadata.put(WifiConfigStore.ID_STRING_KEY_FQDN, CONFIGS.get(network).FQDN);
557 * configKey and the FQDN for HotSpot 2.0 networks.
581 // Legacy Hotspot 2.0 network configuration: Quoted FQDN in "id_str".
585 .thenReturn('"' + CONFIGS.get(1).FQDN + '"');
591 metadata.put(WifiConfigStore.ID_STRING_KEY_FQDN, CONFIGS.get(2).FQDN);
624 if (config.FQDN != null) {
625 homeSPs.add(new HomeSP(null, config.FQDN, ne
[all...]
H A DWifiQualifiedNetworkSelectorTest.java212 config.FQDN = "android.qns.unitTest";
/frameworks/base/wifi/java/android/net/wifi/
H A DWifiConfiguration.java355 public String FQDN; field in class:WifiConfiguration
1329 FQDN = null;
1360 return !TextUtils.isEmpty(FQDN)
1401 append(" BSSID: ").append(this.BSSID).append(" FQDN: ").append(this.FQDN)
1729 key = FQDN + KeyMgmt.strings[KeyMgmt.WPA_EAP];
1837 FQDN = source.FQDN;
1924 dest.writeString(FQDN);
1995 config.FQDN
[all...]
/frameworks/base/packages/Osu/src/com/android/configparse/
H A DConfigBuilder.java200 config.FQDN = homeSP.getFQDN();
/frameworks/base/packages/Osu/src/com/android/hotspot2/
H A DWifiNetworkAdapter.java94 mPasspointConfigs.put(config.FQDN, new PasspointConfig(config));
/frameworks/opt/net/wifi/service/java/com/android/server/wifi/configparse/
H A DConfigBuilder.java360 config.FQDN = homeSP.getFQDN();
/frameworks/base/packages/SettingsLib/src/com/android/settingslib/wifi/
H A DAccessPoint.java242 return config.FQDN.equals(mConfig.providerFriendlyName);

Completed in 2305 milliseconds