Searched defs:password (Results 1 - 25 of 38) sorted by relevance

12

/frameworks/base/core/java/android/webkit/
H A DHttpAuthHandler.java60 public void proceed(String username, String password) { argument
H A DWebViewDatabaseClassic.java65 "password", "formurl", "formdata", "httpauth"
81 // column id strings for "password" table
84 private static final String PASSWORD_PASSWORD_COL = "password";
98 private static final String HTTPAUTH_PASSWORD_COL = "password";
311 // password functions
315 * Set password. Tuple (PASSWORD_HOST_COL, PASSWORD_USERNAME_COL) is unique.
317 * @param schemePlusHost The scheme and host for the password
318 * @param username The username for the password. If it is null, it means
319 * password can't be saved.
320 * @param password Th
322 setUsernamePassword(String schemePlusHost, String username, String password) argument
415 setHttpAuthUsernamePassword(String host, String realm, String username, String password) argument
[all...]
H A DBrowserFrame.java792 * and password, give the user the option of saving them. Will either do
799 * @param password The password entered by the user (sniffed from the DOM).
802 byte[] postData, String username, String password) {
805 || password == null || password.isEmpty()) {
806 return; // No password to save.
821 // Check to see if the username & password appear in
826 postString.contains(URLEncoder.encode(password))) {
831 // save password
801 maybeSavePassword( byte[] postData, String username, String password) argument
1317 setUsernamePassword(String username, String password) argument
1323 nativeAuthenticationProceed(int handle, String username, String password) argument
[all...]
/frameworks/base/obex/javax/obex/
H A DPasswordAuthentication.java36 * This class holds user name and password combinations.
47 * password provided.
49 * @param password the password to include in the response
50 * @throws NullPointerException if <code>password</code> is
53 public PasswordAuthentication(final byte[] userName, final byte[] password) { argument
59 mPassword = new byte[password.length];
60 System.arraycopy(password, 0, mPassword, 0, password.length);
73 * Retrieves the password
[all...]
/frameworks/base/core/java/com/android/internal/net/
H A DVpnProfile.java54 public String password = ""; // 4 field in class:VpnProfile
79 password = in.readString();
100 out.writeString(password);
134 profile.password = values[4];
146 profile.saveLogin = !profile.username.isEmpty() || !profile.password.isEmpty();
159 builder.append('\0').append(saveLogin ? password : "");
/frameworks/base/keystore/java/android/security/
H A DAndroidKeyStore.java75 public Key engineGetKey(String alias, char[] password) throws NoSuchAlgorithmException, argument
195 public void engineSetKeyEntry(String alias, Key key, char[] password, Certificate[] chain) argument
197 if ((password != null) && (password.length > 0)) {
498 public void engineStore(OutputStream stream, char[] password) throws IOException, argument
504 public void engineLoad(InputStream stream, char[] password) throws IOException, argument
510 if (password != null) {
511 throw new IllegalArgumentException("password not supported");
H A DKeyStore.java132 private boolean password(byte[] password) { argument
133 execute('p', password);
137 public boolean password(String password) { argument
138 return password(getPasswordBytes(password));
146 private boolean unlock(byte[] password) { argument
147 execute('u', password);
151 public boolean unlock(String password) { argument
336 getPasswordBytes(String password) argument
[all...]
/frameworks/opt/telephony/src/java/com/android/internal/telephony/
H A DApnSetting.java34 public final String password; field in class:ApnSetting
57 String user, String password, int authType, String[] types,
69 this.password = password;
88 * <mmsport>, <user>, <password>, <authtype>, <mcc>,<mnc>,
93 * <mmsport>, <user>, <password>, <authtype>, <mcc>, <mnc>,
97 * and password and thus cannot be read by this method.
54 ApnSetting(int id, String numeric, String carrier, String apn, String proxy, String port, String mmsc, String mmsProxy, String mmsPort, String user, String password, int authType, String[] types, String protocol, String roamingProtocol, boolean carrierEnabled, int bearer) argument
H A DIccCard.java135 * @param password needed to change the ICC pin state, aka. Pin1
142 String password, Message onComplete);
149 * @param password needed to change the ICC fdn enable, aka Pin2
156 String password, Message onComplete);
159 * Change the ICC password used in ICC pin lock
162 * @param oldPassword is the old password
163 * @param newPassword is the new password
173 * Change the ICC password used in ICC fdn enable
176 * @param oldPassword is the old password
177 * @param newPassword is the new password
141 setIccLockEnabled(boolean enabled, String password, Message onComplete) argument
155 setIccFdnEnabled(boolean enabled, String password, Message onComplete) 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...]
/frameworks/base/core/java/android/net/http/
H A DHttpAuthHeader.java55 * new username and password.
61 * password to use.
151 * @return The password string.
158 * Sets the password string.
160 public void setPassword(String password) { argument
161 mPassword = password;
H A DRequestHandle.java224 public void setupBasicAuthResponse(boolean isProxy, String username, String password) { argument
225 String response = computeBasicAuthResponse(username, password);
238 String password,
246 username, password, realm, nonce, QOP, algorithm, opaque);
273 * @return Basic-scheme authentication response: BASE64(username:password).
275 public static String computeBasicAuthResponse(String username, String password) { argument
277 Assert.assertNotNull(password);
279 // encode username:password to base64
280 return new String(Base64.encodeBase64((username + ':' + password).getBytes()));
297 String password,
236 setupDigestAuthResponse(boolean isProxy, String username, String password, String realm, String nonce, String QOP, String algorithm, String opaque) argument
296 computeDigestAuthResponse(String username, String password, String realm, String nonce, String QOP, String algorithm, String opaque) argument
[all...]
/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/base/core/java/android/app/admin/
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/os/storage/
H A DIMountService.java613 public int decryptStorage(String password) throws RemoteException { argument
619 _data.writeString(password);
630 public int encryptStorage(String password) throws RemoteException { argument
636 _data.writeString(password);
647 public int changeEncryptionPassword(String password) throws RemoteException { argument
653 _data.writeString(password);
665 public int verifyEncryptionPassword(String password) throws RemoteException { argument
671 _data.writeString(password);
1099 String password = data.readString();
1100 int result = decryptStorage(password);
1341 decryptStorage(String password) argument
1346 encryptStorage(String password) argument
1351 changeEncryptionPassword(String password) argument
1357 verifyEncryptionPassword(String password) 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/base/tools/layoutlib/bridge/src/android/webkit/
H A DWebView.java82 public void savePassword(String host, String username, String password) { argument
86 String username, String password) {
85 setHttpAuthUsernamePassword(String host, String realm, String username, String password) argument
/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/core/java/com/android/internal/widget/
H A DLockPatternUtils.java184 * Gets the device policy password mode. If the mode is non-specific, returns
226 * Returns the actual password mode, as set by keyguard after updating the password.
284 KeyStore.getInstance().password(patternToString(pattern));
293 * Check to see if a password matches the saved password. If no password exists,
295 * @param password The password to check.
296 * @return Whether the password matche
298 checkPassword(String password) argument
319 checkPasswordHistory(String password) argument
532 computePasswordQuality(String password) argument
557 updateEncryptionPassword(String password) argument
585 saveLockPassword(String password, int quality) argument
597 saveLockPassword(String password, int quality, boolean isFallback) argument
610 saveLockPassword(String password, int quality, boolean isFallback, int userHandle) argument
819 passwordToHash(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/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 1990 milliseconds

12