Searched defs:preSharedKey (Results 1 - 3 of 3) sorted by relevance

/frameworks/opt/net/wifi/tests/wifitests/src/com/android/server/wifi/
H A DWifiApConfigStoreTest.java88 String ssid, String preSharedKey, int keyManagement, int band, int channel) {
91 config.preSharedKey = preSharedKey;
107 assertEquals(config1.preSharedKey, config2.preSharedKey);
87 setupApConfig( String ssid, String preSharedKey, int keyManagement, int band, int channel) argument
H A DWifiConfigManagerTest.java891 * addition. The fields being reset in this test are the |preSharedKey| and |wepKeys|.
926 // field and setting the |preSharedKey| and |allowedKeyManagement| fields.
1210 * Verifies that hasEverConnected is cleared when a network config |preSharedKey| is updated.
1219 assertFalse(pskNetwork.preSharedKey.equals("newpassword"));
1220 pskNetwork.preSharedKey = "newpassword";
1391 someRandomNetworkWithAllMaskedFields.preSharedKey = WifiConfigurationTestUtil.TEST_PSK;
1405 assertEquals(someRandomNetworkWithAllMaskedFields.preSharedKey,
1406 retrievedNetworkWithPassword.preSharedKey);
1419 assertEquals(someRandomNetworkWithAllMaskedFields.preSharedKey,
1420 retrievedNetworkWithPassword.preSharedKey);
3385 assertAndSetNetworkPreSharedKey( WifiConfiguration configuration, String preSharedKey) argument
[all...]
/frameworks/base/wifi/java/android/net/wifi/
H A DWifiConfiguration.java84 /** WPA pre-shared key (requires {@code preSharedKey} to be specified). */
93 * (requires {@code preSharedKey} to be specified).
294 public String preSharedKey; field in class:WifiConfiguration
1594 if (this.preSharedKey != null) {
1947 preSharedKey = source.preSharedKey;
2033 dest.writeString(preSharedKey);
2101 config.preSharedKey = in.readString();
2166 BackupUtils.writeString(out, preSharedKey);
2188 config.preSharedKey
[all...]

Completed in 513 milliseconds