/frameworks/base/core/tests/ConnectivityManagerTest/src/com/android/connectivitymanagertest/ |
D | WifiConfigurationHelper.java | 71 public static WifiConfiguration createWepConfig(String ssid, String password) { in createWepConfig() 93 public static WifiConfiguration createPskConfig(String ssid, String password) { in createPskConfig() 118 public static WifiConfiguration createEapConfig(String ssid, String password, int eapMethod, in createEapConfig() 193 String password = null; in getWifiConfiguration() local
|
D | ConnectivityManagerTestRunner.java | 62 String password = (String) icicle.get("password"); in onCreate() local
|
/frameworks/base/core/java/com/android/internal/widget/ |
D | LockPatternChecker.java | 145 final String password, in verifyPassword() 181 final String password, in verifyTiedProfileChallenge() 217 final String password, in checkPassword()
|
D | ILockSettings.aidl | 36 void setLockPassword(in String password, in String savedPassword, int userId); in setLockPassword() 37 VerifyCredentialResponse checkPassword(in String password, int userId, in checkPassword() 39 VerifyCredentialResponse verifyPassword(in String password, long challenge, int userId); in verifyPassword() 40 …VerifyCredentialResponse verifyTiedProfileChallenge(String password, boolean isPattern, long chall… in verifyTiedProfileChallenge()
|
D | LockPatternUtils.java | 386 public byte[] verifyPassword(String password, long challenge, int userId) in verifyPassword() 415 public byte[] verifyTiedProfileChallenge(String password, boolean isPattern, long challenge, in verifyTiedProfileChallenge() 441 public boolean checkPassword(String password, int userId) throws RequestThrottledException { in checkPassword() 451 public boolean checkPassword(String password, int userId, in checkPassword() 490 public boolean checkPasswordHistory(String password, int userId) { in checkPasswordHistory() 731 static public int computePasswordQuality(String password) { in computePasswordQuality() 819 private void updateEncryptionPassword(final int type, final String password) { in updateEncryptionPassword() 852 public void saveLockPassword(String password, String savedPassword, int quality, in saveLockPassword() 1105 public byte[] passwordToHash(String password, int userId) { in passwordToHash()
|
/frameworks/base/core/tests/ConnectivityManagerTest/src/com/android/connectivitymanagertest/functional/ |
D | WifiAssociationTest.java | 64 String password = arguments.getString("password"); in testWifiAssociation() local 107 private WifiConfiguration getConfig(String ssid, SecurityType securityType, String password) { in getConfig()
|
/frameworks/base/services/core/java/com/android/server/ |
D | LockSettingsService.java | 747 private void setKeystorePassword(String password, int userHandle) { in setKeystorePassword() 752 private void unlockKeystore(String password, int userHandle) { in unlockKeystore() 989 public void setLockPassword(String password, String savedCredential, int userId) in setLockPassword() 999 private void setLockPasswordInternal(String password, String savedCredential, int userId) in setLockPasswordInternal() 1049 private void tieProfileLockToParent(int userId, String password) { in tieProfileLockToParent() 1310 public VerifyCredentialResponse checkPassword(String password, int userId, in checkPassword() 1316 public VerifyCredentialResponse verifyPassword(String password, long challenge, int userId) in verifyPassword() 1322 public VerifyCredentialResponse verifyTiedProfileChallenge(String password, boolean isPattern, in verifyTiedProfileChallenge() 1354 private VerifyCredentialResponse doVerifyPassword(String password, boolean hasChallenge, in doVerifyPassword() 1366 private VerifyCredentialResponse doVerifyPassword(String password, CredentialHash storedHash, in doVerifyPassword() [all …]
|
/frameworks/opt/telephony/src/java/com/android/internal/telephony/dataconnection/ |
D | DataProfile.java | 41 public final String password; field in DataProfile 57 String user, String password, int type, int maxConnsTime, int maxConns, in DataProfile()
|
D | ApnSetting.java | 57 public final String password; field in ApnSetting 118 String user, String password, int authType, String[] types, in ApnSetting()
|
/frameworks/base/obex/javax/obex/ |
D | PasswordAuthentication.java | 53 public PasswordAuthentication(final byte[] userName, final byte[] password) { in PasswordAuthentication()
|
/frameworks/base/core/java/android/webkit/ |
D | HttpAuthHandler.java | 62 public void proceed(String username, String password) { in proceed()
|
/frameworks/base/packages/Osu/src/com/android/hotspot2/utils/ |
D | HTTPRequest.java | 61 public void doAuthenticate(HTTPResponse httpResponse, String userName, byte[] password, in doAuthenticate() 68 byte[] password, URL url, int sequence) in generateAuthAnswer() 283 private static void test(String user, String realm, String password, String method, String path, in test()
|
/frameworks/opt/net/wifi/service/java/com/android/server/wifi/hotspot2/pps/ |
D | Credential.java | 48 EAPMethod eapMethod, String userName, String password, in Credential() 115 public Credential(Credential other, String password) { in Credential()
|
/frameworks/base/keystore/java/android/security/keystore/ |
D | AndroidKeyStoreSpi.java | 90 public Key engineGetKey(String alias, char[] password) throws NoSuchAlgorithmException, in engineGetKey() 272 public void engineSetKeyEntry(String alias, Key key, char[] password, Certificate[] chain) in engineSetKeyEntry() 922 public void engineStore(OutputStream stream, char[] password) throws IOException, in engineStore() 928 public void engineLoad(InputStream stream, char[] password) throws IOException, in engineLoad()
|
/frameworks/opt/telephony/src/java/com/android/internal/telephony/ |
D | IccCard.java | 152 String password, Message onComplete); in setIccLockEnabled() 166 String password, Message onComplete); in setIccFdnEnabled()
|
/frameworks/base/packages/Osu/src/com/android/hotspot2/pps/ |
D | Credential.java | 39 EAPMethod eapMethod, String userName, String password, in Credential() 106 public Credential(Credential other, String password) { in Credential()
|
/frameworks/base/tools/layoutlib/bridge/src/android/webkit/ |
D | WebView.java | 82 public void savePassword(String host, String username, String password) { in savePassword() 86 String username, String password) { in setHttpAuthUsernamePassword()
|
/frameworks/base/core/java/android/app/admin/ |
D | DeviceAdminInfo.java | 201 sPoliciesDisplayOrder.add(new PolicyInfo(USES_POLICY_RESET_PASSWORD, "reset-password", in sPoliciesDisplayOrder.add() 204 sPoliciesDisplayOrder.add(new PolicyInfo(USES_POLICY_LIMIT_PASSWORD, "limit-password", in sPoliciesDisplayOrder.add() 219 sPoliciesDisplayOrder.add(new PolicyInfo(USES_POLICY_EXPIRE_PASSWORD, "expire-password", in sPoliciesDisplayOrder.add()
|
/frameworks/base/core/java/com/android/internal/net/ |
D | VpnProfile.java | 54 public String password = ""; // 4 field in VpnProfile
|
/frameworks/base/core/java/android/os/storage/ |
D | IMountService.java | 615 public int decryptStorage(String password) throws RemoteException { in decryptStorage() 632 public int encryptStorage(int type, String password) throws RemoteException { in encryptStorage() 650 public int changeEncryptionPassword(int type, String password) throws RemoteException { in changeEncryptionPassword() 669 public int verifyEncryptionPassword(String password) throws RemoteException { in verifyEncryptionPassword() 1797 String password = data.readString(); in onTransact() local 1806 String password = data.readString(); in onTransact() local 1815 String password = data.readString(); in onTransact() local 2351 public int decryptStorage(String password) throws RemoteException; in decryptStorage() 2356 public int encryptStorage(int type, String password) throws RemoteException; in encryptStorage() 2361 public int changeEncryptionPassword(int type, String password) in changeEncryptionPassword() [all …]
|
/frameworks/base/packages/Osu/src/com/android/hotspot2/osu/ |
D | HTTPHandler.java | 49 String user, byte[] password) throws IOException { in HTTPHandler()
|
/frameworks/opt/net/wifi/tests/wifitests/src/android/net/wifi/ |
D | WifiEnterpriseConfigTest.java | 261 String password = "supersecret"; in passwordNotInToString() local
|
/frameworks/opt/telephony/src/java/com/android/internal/telephony/imsphone/ |
D | ImsPhoneCommandInterface.java | 262 String apn, String user, String password, int authType, in setupDataCall() 355 public void queryFacilityLock(String facility, String password, in queryFacilityLock() 360 public void queryFacilityLockForApp(String facility, String password, in queryFacilityLockForApp() 366 String password, int serviceClass, Message response) { in setFacilityLock() 371 String password, int serviceClass, String appId, Message response) { in setFacilityLockForApp() 567 String password, Message result) { in setInitialAttachApn()
|
/frameworks/opt/telephony/src/java/com/android/internal/telephony/sip/ |
D | SipCommandInterface.java | 263 String apn, String user, String password, int authType, in setupDataCall() 356 public void queryFacilityLock(String facility, String password, in queryFacilityLock() 361 public void queryFacilityLockForApp(String facility, String password, in queryFacilityLockForApp() 367 String password, int serviceClass, Message response) { in setFacilityLock() 372 String password, int serviceClass, String appId, Message response) { in setFacilityLockForApp() 568 String password, Message result) { in setInitialAttachApn()
|
/frameworks/base/core/java/org/apache/http/conn/ssl/ |
D | SSLSocketFactory.java | 255 private static KeyManager[] createKeyManagers(final KeyStore keystore, final String password) in createKeyManagers()
|