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

123

/frameworks/base/services/java/com/android/server/
H A DDevicePolicyManagerService.java189 if (DBG) Slog.v(TAG, "Sending password expiration notifications for action "
288 out.startTag(null, "password-quality");
290 out.endTag(null, "password-quality");
292 out.startTag(null, "min-password-length");
294 out.endTag(null, "min-password-length");
297 out.startTag(null, "password-history-length");
299 out.endTag(null, "password-history-length");
302 out.startTag(null, "min-password-uppercase");
304 out.endTag(null, "min-password-uppercase");
307 out.startTag(null, "min-password
1858 resetPassword(String password, int flags, int userHandle) argument
[all...]
/frameworks/opt/telephony/src/java/com/android/internal/telephony/test/
H A DSimulatedCommands.java1021 String apn, String user, String password, String authType,
1661 String password, Message result) {
1020 setupDataCall(String radioTechnology, String profile, String apn, String user, String password, String authType, String protocol, Message result) argument
1660 setInitialAttachApn(String apn, String protocol, int authType, String username, String password, Message result) argument
/frameworks/opt/net/voip/src/java/com/android/server/sip/
H A DSipSessionGroup.java127 * @param profile the local profile with password crossed out
128 * @param password the password of the profile
131 public SipSessionGroup(SipProfile profile, String password, argument
134 mPassword = password;
999 "incorrect username or password");
/frameworks/base/core/java/android/widget/
H A DTextView.java750 boolean password = false;
988 password = a.getBoolean(attr, password);
1189 if (mEditor != null) mEditor.adjustInputType(password, passwordInputType,
1249 if (password || passwordInputType || webPasswordInputType || numberPasswordInputType) {
1685 * This will frequently be null except for single-line and password
4003 // not in password mode, clean up typeface and transformation
4013 // were previously in password mode.
4016 // we are not in password mode.
4029 * It would be better to rely on the input type for everything. A password inputTyp
[all...]
H A DEditor.java539 void adjustInputType(boolean password, boolean passwordInputType, argument
542 // Specialize mInputType to [web]password if we have a text class and the original input
543 // type was a password.
545 if (password || passwordInputType) {
601 * It would be better to rely on the input type for everything. A password inputType should have
602 * a password transformation. We should hence use isPasswordInputType instead of this method.
607 * - Refuse the installation of a non-password transformation in setTransformation if the input
608 * type is password.
613 * @return true if the current transformation method is of the password type.
629 // Always select all on a password fiel
[all...]
/frameworks/opt/telephony/src/java/com/android/internal/telephony/dataconnection/
H A DDataConnection.java456 mApnSetting.apn, mApnSetting.user, mApnSetting.password,
H A DDcTrackerBase.java1717 initialAttachApnSetting.user, initialAttachApnSetting.password, null);
/frameworks/base/keystore/tests/src/android/security/
H A DAndroidKeyStoreTest.java1104 assertTrue(mAndroidKeyStore.password("1111"));
2248 fail("Should fail when a password is specified");
2508 assertTrue(mAndroidKeyStore.password("1111"));
2576 mKeyStore.load(null, "password".toCharArray());
2577 fail("Should throw IllegalArgumentException when password is supplied");

Completed in 203 milliseconds

123