HomeSort by relevance Sort by last modified time
    Searched refs:password (Results 276 - 300 of 1221) sorted by null

<<11121314151617181920>>

  /libcore/luni/src/main/java/java/io/
Console.java 132 * Reads a password from the console. The password will not be echoed to the display.
134 * @return a character array containing the password, or null at EOF.
140 String password = readLine(); local
142 return (password == null) ? null : password.toCharArray();
159 * Reads a password from the console. The password will not be echoed to the display.
167 * @return a character array containing the password, or null at EOF.
  /external/chromium/googleurl/src/
url_parse.cc 71 Component* password) {
73 // password.
79 // Found separator: <username>:<password>
81 *password = MakeRange(user.begin + colon_offset + 1,
86 *password = Component();
144 Component* password,
150 password->reset();
165 username, password);
171 password->reset();
291 // First split into two main parts, the authority (username, password, host
    [all...]
  /external/chromium_org/chrome/browser/resources/chromeos/login/
login_common.js 137 * Shows password changed screen that offers migration.
138 * @param {boolean} showError Whether to show the incorrect password error.
230 * Clears password field in user-pod.
246 * @param {string} password Login password.
248 Oobe.loginForTesting = function(username, password) {
250 chrome.send('completeLogin', [username, password]);
256 * @param {string} password Login password.
258 Oobe.authenticateForTesting = function(username, password) {
    [all...]
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jcajce/provider/keystore/bc/
BcKeyStoreSpi.java 128 char[] password,
151 Cipher cipher = makePBECipher(KEY_CIPHER, Cipher.ENCRYPT_MODE, password, salt, iterationCount);
205 char[] password)
208 if (password == null || password.length == 0)
229 Cipher cipher = makePBECipher(KEY_CIPHER, Cipher.DECRYPT_MODE, password, salt, iterationCount);
248 cipher = makePBECipher("Broken" + KEY_CIPHER, Cipher.DECRYPT_MODE, password, salt, iterationCount);
269 cipher = makePBECipher("Old" + KEY_CIPHER, Cipher.DECRYPT_MODE, password, salt, iterationCount);
288 Cipher out = makePBECipher(KEY_CIPHER, Cipher.ENCRYPT_MODE, password, salt, iterationCount);
457 char[] password,
    [all...]
  /external/chromium/chrome/browser/chromeos/login/
account_screen.h 39 const std::string& password);
dom_login_display.h 67 const std::string& password) OVERRIDE;
enterprise_enrollment_view.h 54 const std::string& password,
login_utils.h 53 const std::string& password,
test_attempt_state.h 20 const std::string& password,
  /external/chromium/chrome/browser/password_manager/
ie7_password.cc 17 // Structures that IE7/IE8 use to store a username/password.
31 // the username, and one for the password.
39 FILETIME time_stamp; // Timestamp when the password got added.
48 // is the username, the second one if the password.
57 std::wstring* password) {
66 if (information->header.item_count != 2) // Username and Password
81 *password = reinterpret_cast<const wchar_t*>(offset_to_data +
112 std::wstring* username, std::wstring* password) {
134 GetUserPassFromData(decrypted_data, username, password);
  /external/chromium/chrome/browser/remoting/
setup_flow_login_step.h 39 const std::string& password,
  /external/chromium/net/socket_stream/
socket_stream_job.h 61 const string16& password);
  /external/chromium/net/url_request/
url_request_ftp_job.h 56 const string16& password);
  /external/chromium_org/chrome/browser/chromeos/login/
fake_login_utils.h 14 // * Fake authentication. You can configure expected usernames and password for
39 const std::string& password);
user.h 23 // |username|, |password|, |auth_code| and |username_hash| which is returned
29 const std::string& password,
32 const std::string& password,
36 const std::string& password,
43 std::string password; member in struct:chromeos::UserContext
59 // Regular user, has a user name and password.
162 // True if the user's session can be locked (i.e. the user has a password with
  /external/chromium_org/chrome/browser/invalidation/
p2p_invalidation_service.h 46 const std::string& password);
  /external/chromium_org/chrome/browser/signin/
fake_signin_manager.cc 43 const std::string& password,
  /external/chromium_org/chrome/browser/ui/
crypto_module_delegate_nss.h 53 void GotPassword(const std::string& password);
crypto_module_password_dialog_nss.cc 39 void GotPassword(const std::string& password);
84 void SlotUnlocker::GotPassword(const std::string& password) {
89 if (password.empty()) {
90 // User cancelled entering password. Oh well.
98 password.c_str());
100 // Incorrect password. Try again.
109 // Correct password (SECSuccess) or too many attempts/other failure
  /external/chromium_org/chrome/browser/ui/views/passwords/
manage_password_item_view.h 29 const base::string16& password);
46 // This link is used to display the password dots when |delete_password_| is
  /external/chromium_org/sync/android/java/src/org/chromium/sync/signin/
SystemAccountManagerDelegate.java 71 public boolean addAccountExplicitly(Account account, String password, Bundle userdata) {
72 return mAccountManager.addAccountExplicitly(account, password, userdata);
87 public void setPassword(Account account, String password) {
88 mAccountManager.setPassword(account, password);
  /external/chromium_org/third_party/zlib/contrib/minizip/
zip.h 230 const char* password,
247 const char* password,
255 password : crypting password (NULL for no crypting)
273 const char* password,
294 const char* password,
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.apache.ant_1.7.1.v20090120-1145/lib/
ant-javamail.jar 
ant-swing.jar 
  /external/lzma/CPP/7zip/UI/Common/
IFileExtractCallback.h 42 virtual HRESULT SetPassword(const UString &password) = 0;

Completed in 1143 milliseconds

<<11121314151617181920>>