/packages/apps/Email/src/com/android/email/activity/setup/ |
AccountSetupBasics.java | 65 * Prompts the user for the email address and password. Also prompts for "Use this account as 80 * gmail account "test_account" with a password of "test_password". 260 String password = SetupData.getPassword(); local 262 mPasswordView.setText(password); 382 // Warn (but don't prevent) if password has leading/trailing spaces 422 String password = mPasswordView.getText().toString(); local 430 recvAuth.setLogin(mProvider.incomingUsername, password); 434 sendAuth.setLogin(mProvider.outgoingUsername, password); 536 String password = mPasswordView.getText().toString(); local 543 // Password: debu [all...] |
AccountSetupExchange.java | 41 * Password 56 * finish() (pop to previous, to re-enter username & password) 137 * Username or password not entered yet 149 // If we've got a username and password and we're NOT editing, try autodiscover 151 String password = account.mHostAuthRecv.mPassword; local 152 if (username != null && password != null) {
|
/packages/apps/Settings/src/com/android/settings/ |
ChooseLockPassword.java | 282 * @param password the raw password the user typed in 283 * @return error message to show to user or null if password is OK 285 private String validatePassword(String password) { 286 if (password.length() < mPasswordMinLength) { 291 if (password.length() > mPasswordMaxLength) { 302 for (int i = 0; i < password.length(); i++) { 303 char c = password.charAt(i); 365 if(mLockPatternUtils.checkPasswordHistory(password)) { 437 * Update the hint based on current Stage and length of password entr 440 String password = mPasswordEntry.getText().toString(); local [all...] |
/frameworks/base/core/java/android/os/storage/ |
IMountService.java | 610 public int decryptStorage(String password) throws RemoteException { 616 _data.writeString(password); 627 public int encryptStorage(String password) throws RemoteException { 633 _data.writeString(password); 644 public int changeEncryptionPassword(String password) throws RemoteException { 650 _data.writeString(password); 662 public int verifyEncryptionPassword(String password) throws RemoteException { 668 _data.writeString(password); 1067 String password = data.readString(); local 1075 String password = data.readString(); local 1083 String password = data.readString(); local [all...] |
/external/chromium/chrome/browser/sync/util/ |
user_settings.cc | 351 const string& password) { 352 // Save one-way hashed password: 359 md5.AddData(password.data(), password.size()); 391 const string& password) { 418 md5.AddData(password.data(), password.size());
|
/cts/tests/tests/webkit/src/android/webkit/cts/ |
HttpAuthHandlerTest.java | 153 MyWebViewClient(boolean proceed, String user, String password) { 156 mPassword = password;
|
/external/apache-harmony/security/src/test/api/java/org/apache/harmony/security/tests/java/security/ |
KeyStoreSpiTest.java | 165 public void engineLoad(InputStream stream, char[] password) { 167 assertNull(password);
|
/external/chromium/chrome/browser/ |
accessibility_events.h | 47 // The name of the control, like "OK" or "Password". 190 bool password); 204 bool password() const { return password_; } function in class:AccessibilityTextBoxInfo
|
/external/chromium/chrome/browser/chromeos/login/ |
enterprise_enrollment_view.cc | 147 const std::string& password, 150 controller_->Authenticate(user, password, captcha, access_code);
|
wizard_controller.h | 175 const std::string& password); 213 void Login(const std::string& username, const std::string& password);
|
/external/chromium/chrome/browser/ui/login/ |
login_prompt_gtk.cc | 51 const std::wstring& password) { 60 WideToUTF8(password).c_str());
|
/external/chromium/chrome/common/net/gaia/ |
gaia_auth_fetcher.h | 42 // needed to complete authentication, the user provided the right password. 56 const std::string& password, 155 const std::string& password,
|
/external/chromium/crypto/ |
symmetric_key_mac.cc | 84 const std::string& password, 112 params.Passphrase = StringToData(password);
|
symmetric_key_unittest.cc | 53 crypto::SymmetricKey::HMAC_SHA1, "password", "somesalt", 1024, 160)); 70 const char* password; member in struct:PBKDF2TestVector 95 test_data.password, test_data.salt, 112 "password", 120 "password", 128 "password", 138 "password", 150 "password", 158 "password", 166 "password", [all...] |
/external/chromium/net/http/ |
http_auth_sspi_win.h | 142 // obtained using |*username| and |*password|. If |username| and |password| 146 const string16* password, 156 int OnFirstRound(const string16* username, const string16* password);
|
/external/chromium/third_party/libjingle/source/talk/base/ |
socketadapters.h | 119 const std::string& username, const CryptString& password); 178 const std::string& username, const CryptString& password);
|
/external/chromium/third_party/libjingle/source/talk/p2p/client/ |
basicportallocator.h | 174 std::string password; member in struct:cricket::PortConfiguration 189 const std::string& password,
|
/external/webkit/Source/JavaScriptCore/tests/mozilla/ecma_3/RegExp/ |
regress-85721.js | 80 str='<sql:connection id="conn1"> <sql:url>www.m.com</sql:url> <sql:driver>drive.class</sql:driver>\n<sql:userId>foo</sql:userId> <sql:password>goo</sql:password> </sql:connection>'; 81 re = /<sql:connection id="([^\r\n]*?)">\s*<sql:url>\s*([^\r\n]*?)\s*<\/sql:url>\s*<sql:driver>\s*([^\r\n]*?)\s*<\/sql:driver>\s*(\s*<sql:userId>\s*([^\r\n]*?)\s*<\/sql:userId>\s*)?\s*(\s*<sql:password>\s*([^\r\n]*?)\s*<\/sql:password>\s*)?\s*<\/sql:connection>/; 82 expect = Array("<sql:connection id=\"conn1\"> <sql:url>www.m.com</sql:url> <sql:driver>drive.class</sql:driver>\n<sql:userId>foo</sql:userId> <sql:password>goo</sql:password> </sql:connection>","conn1","www.m.com","drive.class","<sql:userId>foo</sql:userId> ","foo","<sql:password>goo</sql:password> ","goo");
|
/external/webkit/Tools/DumpRenderTree/mac/ |
ResourceLoadDelegate.mm | 188 const char* password = gLayoutTestController->authenticationPassword().c_str(); 189 NSString *nsPassword = [NSString stringWithFormat:@"%s", password ? password : ""]; 194 [[challenge sender] useCredential:[NSURLCredential credentialWithUser:nsUser password:nsPassword persistence:NSURLCredentialPersistenceForSession]
|
/external/wpa_supplicant_6/wpa_supplicant/src/eap_server/ |
eap_md5.c | 111 if (sm->user == NULL || sm->user->password == NULL || 113 wpa_printf(MSG_INFO, "EAP-MD5: Plaintext password not " 127 chap_md5(id, sm->user->password, sm->user->password_len,
|
/external/wpa_supplicant_8/src/eap_server/ |
eap_server_md5.c | 112 if (sm->user == NULL || sm->user->password == NULL || 114 wpa_printf(MSG_INFO, "EAP-MD5: Plaintext password not " 128 chap_md5(id, sm->user->password, sm->user->password_len,
|
/frameworks/base/core/java/android/net/http/ |
HttpAuthHeader.java | 55 * new username and password. 61 * password to use. 106 * Password string we get from the user. 151 * @return The password string. 158 * Sets the password string. 160 public void setPassword(String password) { 161 mPassword = password;
|
/packages/apps/Email/tests/src/com/android/email/activity/setup/ |
AccountSetupExchangeTests.java | 68 Intent i = getTestIntent("eas://user:password@server.com"); 76 Intent i = getTestIntent("eas://user:password@server.com"); 89 Intent i = getTestIntent("eas://:password@server.com"); 96 * No password is not OK - not enabled 139 // Clear the password - should disable 150 * Check password field for a given password. Should be called in UI thread. Confirms that 151 * the password has not been trimmed. 153 * @param password the password to test wit [all...] |
/sdk/sdkmanager/libs/sdklib/src/com/android/sdklib/internal/repository/ |
UrlOpener.java | 69 * login/password and tries to authenticate into proxy server and/or URL. 81 * Login/Password for each realm are stored in a static {@link Map}. 173 // since there is no cache, request for login and password 184 String password = result.getSecond(); local 188 Credentials credentials = new UsernamePasswordCredentials(user, password);
|
/cts/tests/tests/content/src/android/content/cts/ |
ContentResolverSyncTestCase.java | 72 private void addAccountExplicitly(Account account, String password, Bundle userdata) { 73 assertTrue(sAccountManager.addAccountExplicitly(account, password, userdata)); 95 private void addAccountAndVerifyInitSync(Account account, String password, 100 addAccountExplicitly(account, password, null /* userData */);
|