Home | History | Annotate | Download | only in connectivitymanagertest

Lines Matching defs:ssid

54      * @param ssid The SSID of the wifi network
57 public static WifiConfiguration createOpenConfig(String ssid) {
58 WifiConfiguration config = createGenericConfig(ssid);
67 * @param ssid The SSID of the wifi network
71 public static WifiConfiguration createWepConfig(String ssid, String password) {
72 WifiConfiguration config = createGenericConfig(ssid);
89 * @param ssid The SSID of the wifi network
93 public static WifiConfiguration createPskConfig(String ssid, String password) {
94 WifiConfiguration config = createGenericConfig(ssid);
108 * @param ssid The SSID of the wifi network
118 public static WifiConfiguration createEapConfig(String ssid, String password, int eapMethod,
122 config.SSID = quotedString(ssid);
147 private static WifiConfiguration createGenericConfig(String ssid) {
149 config.SSID = quotedString(ssid);
159 * wifi configuration. The wifi configuration requires the fields "ssid" and "security" with
192 String ssid = jsonConfig.getString("ssid");
199 config = createOpenConfig(ssid);
203 config = createWepConfig(ssid, password);
207 config = createPskConfig(ssid, password);
232 config = createEapConfig(ssid, password, eapMethod, phase2, identity,