Home | History | Annotate | Download | only in wifi

Lines Matching defs:configKey

536      * @param configKey configKey of the requested network.
539 public WifiConfiguration getConfiguredNetwork(String configKey) {
540 WifiConfiguration config = getInternalConfiguredNetwork(configKey);
599 * else it attempts to find a matching configuration using the configKey.
606 internalConfig = mConfiguredNetworks.getByConfigKeyForCurrentUser(config.configKey());
609 + " or configKey " + config.configKey());
631 * provided configKey in our database.
633 private WifiConfiguration getInternalConfiguredNetwork(String configKey) {
635 mConfiguredNetworks.getByConfigKeyForCurrentUser(configKey);
637 Log.e(TAG, "Cannot find network with configKey " + configKey);
986 // First check if we already have a network with the provided network id or configKey.
997 // network with the the same configkey.
998 existingInternalConfig = getInternalConfiguredNetwork(newInternalConfig.configKey());
1010 + config.configKey());
1022 + config.configKey() + ". Must have NETWORK_SETTINGS,"
1078 + " configKey=" + newInternalConfig.configKey()
1148 removeConnectChoiceFromAllNetworks(config.configKey());
1156 + " configKey=" + config.configKey()
1180 + config.configKey());
1267 Log.d(TAG, "Removing passpoint network config " + config.configKey());
1271 Log.d(TAG, "Removing ephemeral network config " + config.configKey());
1363 localLog("setNetworkSelectionStatus: configKey=" + config.configKey()
1439 localLog("updateNetworkRecommendation: configKey=" + config.configKey()
1517 + config.configKey());
1552 + config.configKey());
1737 * @param connectChoiceConfigKey ConfigKey corresponding to the network that is being removed.
1787 * @param connectChoiceConfigKey ConfigKey corresponding to the network which was chosen over
1892 * Retrieve the configKey corresponding to the last network that was explicitly selected by
1905 return config.configKey();
2000 Log.v(TAG, "getSavedNetworkFromScanDetail Found " + config.configKey()
2066 + " for " + config.configKey());
2157 Log.v(TAG, "linkNetworks will link " + network2.configKey()
2158 + " and " + network1.configKey());
2168 network2.linkedConfigurations.put(network1.configKey(), 1);
2169 network1.linkedConfigurations.put(network2.configKey(), 1);
2180 && (network2.linkedConfigurations.get(network1.configKey()) != null)) {
2182 Log.v(TAG, "unlinkNetworks un-link " + network1.configKey()
2183 + " from " + network2.configKey());
2185 network2.linkedConfigurations.remove(network1.configKey());
2188 && (network1.linkedConfigurations.get(network2.configKey()) != null)) {
2190 Log.v(TAG, "unlinkNetworks un-link " + network2.configKey()
2191 + " from " + network1.configKey());
2193 network1.linkedConfigurations.remove(network2.configKey());
2216 if (linkConfig.configKey().equals(config.configKey())) {
2307 .append(config.configKey())
2339 for (String configKey : config.linkedConfigurations.keySet()) {
2340 WifiConfiguration linkedConfig = getInternalConfiguredNetwork(configKey);
2655 + " configKey=" + config.configKey());
2676 Log.v(TAG, "Adding network from shared store " + configuration.configKey());
2699 Log.v(TAG, "Adding network from user store " + configuration.configKey());