Home | History | Annotate | Download | only in settings

Lines Matching refs:ssid

137         String ssid = "";  // equals() and hashCode() need these to be non-null
164 // remember the ssid and key_mgmt lines for duplicate culling
165 if (line.startsWith("ssid")) {
166 ssid = line;
199 return ssid.equals(other.ssid) && key_mgmt.equals(other.key_mgmt);
205 result = 31 * result + ssid.hashCode();
229 Log.v(TAG, "Adding " + net.ssid + " / " + net.key_mgmt);
235 Log.v(TAG, "Dupe; skipped " + net.ssid + " / " + net.key_mgmt);