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

123

/frameworks/base/voip/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/src/java/com/android/internal/telephony/
H A DCommandsInterface.java562 * if the password is incorrect
578 * if the password is incorrect
592 * if the password is incorrect
608 * if the password is incorrect
624 * if the password is incorrect
642 * if the password is incorrect
658 * if the password is incorrect
676 * if the password is incorrect
1170 * @param password password o
1175 queryFacilityLock(String facility, String password, int serviceClass, Message response) argument
1190 queryFacilityLockForApp(String facility, String password, int serviceClass, String appId, Message response) argument
1200 setFacilityLock(String facility, boolean lockState, String password, int serviceClass, Message response) argument
1213 setFacilityLockForApp(String facility, boolean lockState, String password, int serviceClass, String appId, Message response) argument
1496 setupDataCall(String radioTechnology, String profile, String apn, String user, String password, String authType, String protocol, Message result) argument
[all...]
H A DIccCardProxy.java606 public void setIccLockEnabled(boolean enabled, String password, Message onComplete) { argument
609 mUiccApplication.setIccLockEnabled(enabled, password, onComplete);
620 public void setIccFdnEnabled(boolean enabled, String password, Message onComplete) { argument
623 mUiccApplication.setIccFdnEnabled(enabled, password, onComplete);
H A DUiccCardApplication.java602 * @param password needed to change the ICC pin state, aka. Pin1
609 String password, Message onComplete) {
619 enabled, password, serviceClassX, mAid,
629 * @param password needed to change the ICC fdn enable, aka Pin2
636 String password, Message onComplete) {
647 enabled, password, serviceClassX, mAid,
653 * Change the ICC password used in ICC pin lock
656 * @param oldPassword is the old password
657 * @param newPassword is the new password
673 * Change the ICC password use
608 setIccLockEnabled(boolean enabled, String password, Message onComplete) argument
635 setIccFdnEnabled(boolean enabled, String password, Message onComplete) argument
[all...]
H A DRIL.java1340 String user, String password, String authType, String protocol,
1351 rr.mp.writeString(password);
1358 + password + " " + authType + " " + protocol);
1650 queryFacilityLock(String facility, String password, int serviceClass, argument
1652 queryFacilityLockForApp(facility, password, serviceClass, null, response);
1657 queryFacilityLockForApp(String facility, String password, int serviceClass, String appId, argument
1669 rr.mp.writeString(password);
1679 setFacilityLock (String facility, boolean lockState, String password, argument
1681 setFacilityLockForApp(facility, lockState, password, serviceClass, null, response);
1686 setFacilityLockForApp(String facility, boolean lockState, String password, argument
1339 setupDataCall(String radioTechnology, String profile, String apn, String user, String password, String authType, String protocol, Message result) argument
[all...]
/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/gsm/
H A DGsmDataConnection.java106 mApn.apn, mApn.user, mApn.password,
H A DGsmMmiCode.java122 String pwd; // For password registration
713 // sia = password
716 String password = sia;
721 phone.mCM.queryFacilityLock(facility, password,
724 phone.mCM.setFacilityLock(facility, isActivate(), password,
752 // password mismatch; return error
781 // password mismatch; return error
/frameworks/base/core/java/android/app/admin/
H A DIDevicePolicyManager.aidl66 boolean resetPassword(String password, int flags, int userHandle);
H A DDevicePolicyManager.java115 * Activity action: have the user enter a new password. This activity should
118 * enter a new password that meets the current requirements. You can use
120 * have the user select a new password in order to meet the current
122 * password characteristics to see if they are sufficient.
213 * for the password. Note that quality constants are ordered so that higher
228 * of password, but doesn't care what it is. Note that quality constants
235 * password containing at least numeric characters. Note that quality
242 * password containing at least alphabetic (or other symbol) characters.
250 * password containing at least <em>both></em> numeric <em>and</em>
258 * password containin
986 resetPassword(String password, int flags) argument
[all...]
/frameworks/base/core/java/android/webkit/
H A DCallbackProxy.java494 String password = bundle.getString("password");
497 if (!mWebView.onSavePassword(schemePlusHost, username, password,
866 password = msg.getData().getString("password");
868 host, realm, username, password);
1192 String password, Message resumeMsg) {
1204 bundle.putString("password", password);
1211 String username, String password) {
1191 onSavePassword(String schemePlusHost, String username, String password, Message resumeMsg) argument
1210 onReceivedHttpAuthCredentials(String host, String realm, String username, String password) argument
[all...]
H A DWebView.java593 * Sets a username and password pair for the specified host. This data is
594 * used by the Webview to autocomplete username and password fields in web
600 * @param password the password for the given host
604 public void savePassword(String host, String username, String password) { argument
606 mProvider.savePassword(host, username, password);
617 * @param password the password
623 String username, String password) {
625 mProvider.setHttpAuthUsernamePassword(host, realm, username, password);
622 setHttpAuthUsernamePassword(String host, String realm, String username, String password) argument
[all...]
/frameworks/support/v4/java/android/support/v4/view/accessibility/
H A DAccessibilityNodeInfoCompat.java83 public void setPassword(Object info, boolean password); argument
349 public void setPassword(Object info, boolean password) { argument
606 public void setPassword(Object info, boolean password) { argument
607 AccessibilityNodeInfoCompatIcs.setPassword(info, password);
1573 * Gets whether this node is a password.
1575 * @return True if the node is a password.
1582 * Sets whether this node is a password.
1589 * @param password True if the node is a password.
1592 public void setPassword(boolean password) { argument
[all...]
/frameworks/base/services/java/com/android/server/connectivity/
H A DVpn.java512 profile.ipsecSecret, profile.username, profile.password, "", gateway,
518 caCert, serverCert, profile.username, profile.password, "", gateway,
524 caCert, serverCert, profile.username, profile.password, "", gateway,
535 "name", profile.username, "password", profile.password,
545 "name", profile.username, "password", profile.password,
/frameworks/base/services/java/com/android/server/
H A DMountService.java1975 public int decryptStorage(String password) { argument
1976 if (TextUtils.isEmpty(password)) {
1977 throw new IllegalArgumentException("password cannot be empty");
1991 event = mConnector.execute("cryptfs", "checkpw", password);
2015 public int encryptStorage(String password) { argument
2016 if (TextUtils.isEmpty(password)) {
2017 throw new IllegalArgumentException("password cannot be empty");
2030 mConnector.execute("cryptfs", "enablecrypto", "inplace", password);
2039 public int changeEncryptionPassword(String password) { argument
2040 if (TextUtils.isEmpty(password)) {
2067 verifyEncryptionPassword(String password) argument
[all...]
H A DDevicePolicyManagerService.java149 Slog.v(TAG, "Sending password expiration notifications for action " + action
243 out.startTag(null, "password-quality");
245 out.endTag(null, "password-quality");
247 out.startTag(null, "min-password-length");
249 out.endTag(null, "min-password-length");
252 out.startTag(null, "password-history-length");
254 out.endTag(null, "password-history-length");
257 out.startTag(null, "min-password-uppercase");
259 out.endTag(null, "min-password-uppercase");
262 out.startTag(null, "min-password
1627 resetPassword(String password, int flags, int userHandle) argument
[all...]
/frameworks/base/wifi/java/android/net/wifi/
H A DWifiConfiguration.java114 public EnterpriseField password = new EnterpriseField("password"); field in class:WifiConfiguration
128 eap, phase2, identity, anonymous_identity, password, client_cert,
/frameworks/base/core/java/android/accounts/
H A DAccountManager.java51 * online accounts. The user enters credentials (username and password) once
64 * the user's actual password. (Auth tokens are normally created with a
178 * Bundle key used to supply the password directly in options to
180 * the standard password prompt.
182 public static final String KEY_PASSWORD = "password";
233 * account's credentials (saved password, etc) are changed.
293 * Gets the saved password associated with the account.
303 * @param account The account to query for a password
304 * @return The account's password, null if none or if the account doesn't exist
563 * @param password Th
568 addAccountExplicitly(Account account, String password, Bundle userdata) argument
686 setPassword(final Account account, final String password) argument
[all...]
H A DAccountManagerService.java81 * A system service that provides account, password, and authtoken management for all
115 private static final String ACCOUNTS_PASSWORD = "password";
511 public boolean addAccount(Account account, String password, Bundle extras) { argument
524 return addAccountInternal(accounts, account, password, extras);
530 private boolean addAccountInternal(UserAccounts accounts, Account account, String password, argument
551 values.put(ACCOUNTS_PASSWORD, password);
880 public void setPassword(Account account, String password) { argument
891 setPasswordInternal(accounts, account, password);
897 private void setPasswordInternal(UserAccounts accounts, Account account, String password) { argument
906 values.put(ACCOUNTS_PASSWORD, password);
[all...]
/frameworks/base/keystore/tests/src/android/security/
H A DAndroidKeyPairGeneratorTest.java67 assertTrue(mAndroidKeyStore.password("1111"));
/frameworks/base/policy/src/com/android/internal/policy/impl/keyguard_obsolete/
H A DPasswordUnlockScreen.java58 * an unlock password
195 // If no icon is visible, reset the left margin on the password field so the text is
256 // send focus to the password field
299 KeyStore.getInstance().password(entry);
302 // real password. This may require some tweaking.
H A DPatternUnlockScreen.java349 KeyStore.getInstance().password(LockPatternUtils.patternToString(pattern));
/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/base/core/java/android/view/accessibility/
H A DAccessibilityNodeInfo.java1083 * Gets whether this node is a password.
1085 * @return True if the node is a password.
1092 * Sets whether this node is a password.
1099 * @param password True if the node is a password.
1103 public void setPassword(boolean password) { argument
1104 setBooleanProperty(PROPERTY_PASSWORD, password);
1863 builder.append("; password: ").append(isPassword());

Completed in 2002 milliseconds

123