Searched refs:password (Results 26 - 50 of 58) sorted by relevance

123

/frameworks/base/core/java/android/webkit/
H A DWebViewProvider.java82 public void savePassword(String host, String username, String password); argument
85 String username, String password);
84 setHttpAuthUsernamePassword(String host, String realm, String username, String password) argument
H A DWebView.java595 * Sets a username and password pair for the specified host. This data is
596 * used by the Webview to autocomplete username and password fields in web
602 * @param password the password for the given host
608 public void savePassword(String host, String username, String password) { argument
611 mProvider.savePassword(host, username, password);
622 * @param password the password
628 String username, String password) {
631 mProvider.setHttpAuthUsernamePassword(host, realm, username, password);
627 setHttpAuthUsernamePassword(String host, String realm, String username, String password) argument
[all...]
/frameworks/opt/net/voip/src/java/android/net/sip/
H A DSipProfile.java180 * Sets the password of the SIP account
182 * @param password password of the SIP account
185 public Builder setPassword(String password) { argument
186 mUri.setUserPassword(password);
280 // remove password from URI
410 * Gets the password.
412 * @return the password
/frameworks/support/v4/ics/android/support/v4/view/accessibility/
H A DAccessibilityNodeInfoCompatIcs.java196 public static void setPassword(Object info, boolean password) { argument
197 ((AccessibilityNodeInfo) info).setPassword(password);
/frameworks/opt/telephony/tests/telephonytests/src/com/android/internal/telephony/gsm/
H A DUsimDataDownloadCommands.java447 public void queryFacilityLock(String facility, String password, int serviceClass, argument
452 public void queryFacilityLockForApp(String facility, String password, int serviceClass, argument
457 public void setFacilityLock(String facility, boolean lockState, String password, argument
462 public void setFacilityLockForApp(String facility, boolean lockState, String password, argument
596 String password, String authType, String protocol, Message result) {
595 setupDataCall(String radioTechnology, String profile, String apn, String user, String password, String authType, String protocol, Message result) argument
/frameworks/base/libs/storage/
H A DIMountService.cpp512 int32_t decryptStorage(const String16& password) argument
516 data.writeString16(password);
529 int32_t encryptStorage(const String16& password) argument
533 data.writeString16(password);
/frameworks/opt/telephony/src/java/com/android/internal/telephony/uicc/
H A DIccCardProxy.java641 public void setIccLockEnabled(boolean enabled, String password, Message onComplete) { argument
644 mUiccApplication.setIccLockEnabled(enabled, password, onComplete);
655 public void setIccFdnEnabled(boolean enabled, String password, Message onComplete) { argument
658 mUiccApplication.setIccFdnEnabled(enabled, password, onComplete);
H A DUiccCardApplication.java694 * @param password needed to change the ICC pin state, aka. Pin1
701 String password, Message onComplete) {
711 enabled, password, serviceClassX, mAid,
721 * @param password needed to change the ICC fdn enable, aka Pin2
728 String password, Message onComplete) {
739 enabled, password, serviceClassX, mAid,
745 * Change the ICC password used in ICC pin lock
748 * @param oldPassword is the old password
749 * @param newPassword is the new password
766 * Change the ICC password use
700 setIccLockEnabled(boolean enabled, String password, Message onComplete) argument
727 setIccFdnEnabled(boolean enabled, String password, Message onComplete) argument
[all...]
/frameworks/base/core/java/android/app/admin/
H A DIDevicePolicyManager.aidl66 boolean resetPassword(String password, int flags, int userHandle);
H A DDevicePolicyManager.java122 * Activity action: have the user enter a new password. This activity should
125 * enter a new password that meets the current requirements. You can use
127 * have the user select a new password in order to meet the current
129 * password characteristics to see if they are sufficient.
220 * for the password. Note that quality constants are ordered so that higher
235 * of password, but doesn't care what it is. Note that quality constants
242 * password containing at least numeric characters. Note that quality
249 * password containing at least alphabetic (or other symbol) characters.
257 * password containing at least <em>both></em> numeric <em>and</em>
265 * password containin
993 resetPassword(String password, int flags) argument
[all...]
/frameworks/base/packages/Keyguard/test/src/com/android/keyguard/test/
H A DKeyguardTestActivity.java328 public boolean checkPassword(String password) { argument
329 return password.length() > 4;
/frameworks/support/v4/java/android/support/v4/view/accessibility/
H A DAccessibilityNodeInfoCompat.java86 public void setPassword(Object info, boolean password); argument
356 public void setPassword(Object info, boolean password) { argument
633 public void setPassword(Object info, boolean password) { argument
634 AccessibilityNodeInfoCompatIcs.setPassword(info, password);
1723 * Gets whether this node is a password.
1725 * @return True if the node is a password.
1732 * Sets whether this node is a password.
1739 * @param password True if the node is a password.
1742 public void setPassword(boolean password) { argument
[all...]
/frameworks/base/services/java/com/android/server/connectivity/
H A DVpn.java740 profile.ipsecSecret, profile.username, profile.password, "", gateway,
746 caCert, serverCert, profile.username, profile.password, "", gateway,
752 caCert, serverCert, profile.username, profile.password, "", gateway,
763 "name", profile.username, "password", profile.password,
773 "name", profile.username, "password", profile.password,
/frameworks/base/services/java/com/android/server/
H A DMountService.java2038 public int decryptStorage(String password) { argument
2039 if (TextUtils.isEmpty(password)) {
2040 throw new IllegalArgumentException("password cannot be empty");
2054 event = mConnector.execute("cryptfs", "checkpw", new SensitiveArg(password));
2078 public int encryptStorage(String password) { argument
2079 if (TextUtils.isEmpty(password)) {
2080 throw new IllegalArgumentException("password cannot be empty");
2093 mConnector.execute("cryptfs", "enablecrypto", "inplace", new SensitiveArg(password));
2102 public int changeEncryptionPassword(String password) { argument
2103 if (TextUtils.isEmpty(password)) {
2130 verifyEncryptionPassword(String password) argument
[all...]
/frameworks/base/core/java/android/accounts/
H A DAccountManager.java54 * online accounts. The user enters credentials (username and password) once
67 * the user's actual password. (Auth tokens are normally created with a
185 * Bundle key used to supply the password directly in options to
187 * the standard password prompt.
189 public static final String KEY_PASSWORD = "password";
240 * account's credentials (saved password, etc) are changed.
300 * Gets the saved password associated with the account.
310 * @param account The account to query for a password
311 * @return The account's password, null if none or if the account doesn't exist
604 * @param password Th
609 addAccountExplicitly(Account account, String password, Bundle userdata) argument
727 setPassword(final Account account, final String password) argument
[all...]
/frameworks/webview/chromium/java/com/android/webview/chromium/
H A DWebViewContentsClientAdapter.java816 public void proceed(String username, String password) { argument
821 if (password == null) {
822 password = "";
824 mAwHandler.proceed(username, password);
H A DWebViewChromium.java380 public void savePassword(String host, String username, String password) { argument
386 final String username, final String password) {
391 setHttpAuthUsernamePassword(host, realm, username, password);
396 mAwContents.setHttpAuthUsernamePassword(host, realm, username, password);
385 setHttpAuthUsernamePassword(final String host, final String realm, final String username, final String password) argument
/frameworks/opt/telephony/src/java/com/android/internal/telephony/
H A DRIL.java1385 String user, String password, String authType, String protocol,
1396 rr.mParcel.writeString(password);
1403 + password + " " + authType + " " + protocol);
1715 queryFacilityLock(String facility, String password, int serviceClass, argument
1717 queryFacilityLockForApp(facility, password, serviceClass, null, response);
1722 queryFacilityLockForApp(String facility, String password, int serviceClass, String appId, argument
1734 rr.mParcel.writeString(password);
1744 setFacilityLock (String facility, boolean lockState, String password, argument
1746 setFacilityLockForApp(facility, lockState, password, serviceClass, null, response);
1751 setFacilityLockForApp(String facility, boolean lockState, String password, argument
1384 setupDataCall(String radioTechnology, String profile, String apn, String user, String password, String authType, String protocol, Message result) argument
4062 setInitialAttachApn(String apn, String protocol, int authType, String username, String password, Message result) argument
[all...]
/frameworks/base/wifi/java/android/net/wifi/
H A DWifiEnterpriseConfig.java84 private static final String PASSWORD_KEY = "password";
107 // This is essential because an app may not have all fields like password
370 * Set the password.
371 * @param password the password
373 public void setPassword(String password) { argument
374 setFieldValue(PASSWORD_KEY, password, "");
378 * Get the password.
380 * Returns locally set password value. For networks fetched from
/frameworks/base/packages/BackupRestoreConfirmation/src/com/android/backupconfirm/
H A DBackupRestoreConfirmation.java178 mCurPassword = (TextView) findViewById(R.id.password);
182 // We vary the password prompt depending on whether one is predefined, and whether
188 // this password is mandatory; we hide the other options during backup
/frameworks/opt/telephony/src/java/com/android/internal/telephony/gsm/
H A DGsmMmiCode.java125 String mPwd; // For password registration
723 // sia = password
726 String password = mSia;
731 mPhone.mCi.queryFacilityLock(facility, password,
734 mPhone.mCi.setFacilityLock(facility, isActivate(), password,
762 // password mismatch; return error
795 // password mismatch; return error
/frameworks/base/services/java/com/android/server/pm/
H A DUserManagerService.java1256 * Generate a hash for the given password. To avoid brute force attacks, we use a salted hash.
1259 * @param password the password.
1263 private String passwordToHash(String password, long salt) { argument
1264 if (password == null) {
1268 String hashed = salt + password;
1270 byte[] saltedPassword = (password + salt).getBytes();
/frameworks/base/core/java/android/view/accessibility/
H A DAccessibilityNodeInfo.java1293 * Gets whether this node is a password.
1295 * @return True if the node is a password.
1302 * Sets whether this node is a password.
1309 * @param password True if the node is a password.
1313 public void setPassword(boolean password) { argument
1314 setBooleanProperty(BOOLEAN_PROPERTY_PASSWORD, password);
1473 * in a login screen with a TextView that displays an "incorrect password"
2524 builder.append("; password: ").append(isPassword());
/frameworks/base/keystore/tests/src/android/security/
H A DAndroidKeyPairGeneratorTest.java79 assertTrue(mAndroidKeyStore.password("1111"));
455 assertTrue(mAndroidKeyStore.password("1111"));
/frameworks/base/services/java/com/android/server/accounts/
H A DAccountManagerService.java97 * A system service that provides account, password, and authtoken management for all
131 private static final String ACCOUNTS_PASSWORD = "password";
565 public boolean addAccountExplicitly(Account account, String password, Bundle extras) { argument
585 return addAccountInternal(accounts, account, password, extras, false);
687 private boolean addAccountInternal(UserAccounts accounts, Account account, String password, argument
708 values.put(ACCOUNTS_PASSWORD, password);
1098 public void setPassword(Account account, String password) { argument
1109 setPasswordInternal(accounts, account, password);
1115 private void setPasswordInternal(UserAccounts accounts, Account account, String password) { argument
1124 values.put(ACCOUNTS_PASSWORD, password);
[all...]

Completed in 673 milliseconds

123