HomeSort by relevance Sort by last modified time
    Searched refs:passwordStr (Results 1 - 2 of 2) sorted by null

  /frameworks/base/core/tests/ConnectivityManagerTest/src/com/android/connectivitymanagertest/
ConnectivityManagerStressTestRunner.java 84 String passwordStr = (String) icicle.get("reconnect_password");
85 if (passwordStr != null) {
86 mReconnectPassword = passwordStr;
AccessPointParserHelper.java 225 String passwordStr = new String(ch, start, length);
226 int len = passwordStr.length();
232 passwordStr.matches("[0-9A-Fa-f]*")) {
233 config.wepKeys[0] = passwordStr;
235 config.wepKeys[0] = '"' + passwordStr + '"';
238 if (passwordStr.matches("[0-9A-Fa-f]{64}")) {
239 config.preSharedKey = passwordStr;
241 config.preSharedKey = '"' + passwordStr + '"';
244 config.enterpriseConfig.setPassword(passwordStr);

Completed in 524 milliseconds