Searched refs:RESPONSE_OK (Results 1 – 10 of 10) sorted by relevance
/frameworks/base/core/java/com/android/internal/widget/ |
D | VerifyCredentialResponse.java | 31 public static final int RESPONSE_OK = 0; field in VerifyCredentialResponse 51 } else if (responseCode == RESPONSE_OK) { 70 mResponseCode = RESPONSE_OK; in VerifyCredentialResponse() 77 mResponseCode = RESPONSE_OK; in VerifyCredentialResponse() 97 } else if (mResponseCode == RESPONSE_OK) { in writeToParcel() 142 } else if (responseCode == GateKeeperResponse.RESPONSE_OK) { in fromGateKeeperResponse()
|
D | LockPatternUtils.java | 348 if (response.getResponseCode() == VerifyCredentialResponse.RESPONSE_OK) { in verifyCredential() 367 if (response.getResponseCode() == VerifyCredentialResponse.RESPONSE_OK) { in checkCredential() 454 if (response.getResponseCode() == VerifyCredentialResponse.RESPONSE_OK) { in verifyTiedProfileChallenge()
|
/frameworks/base/services/tests/servicestests/src/com/android/server/locksettings/ |
D | SyntheticPasswordTests.java | 98 assertEquals(VerifyCredentialResponse.RESPONSE_OK, in testPasswordMigration() 104 assertEquals(VerifyCredentialResponse.RESPONSE_OK, in testPasswordMigration() 127 assertEquals(VerifyCredentialResponse.RESPONSE_OK, in testSyntheticPasswordChangeCredential() 137 assertEquals(VerifyCredentialResponse.RESPONSE_OK, in testSyntheticPasswordVerifyCredential() 158 assertEquals(VerifyCredentialResponse.RESPONSE_OK, in testSyntheticPasswordClearCredential() 177 assertEquals(VerifyCredentialResponse.RESPONSE_OK, in testSyntheticPasswordClearCredentialUntrusted() 195 assertEquals(VerifyCredentialResponse.RESPONSE_OK, in testSyntheticPasswordChangeCredentialUntrusted() 216 assertEquals(VerifyCredentialResponse.RESPONSE_OK, in testManagedProfileUnifiedChallengeMigration() 220 assertEquals(VerifyCredentialResponse.RESPONSE_OK, in testManagedProfileUnifiedChallengeMigration() 248 assertEquals(VerifyCredentialResponse.RESPONSE_OK, in testManagedProfileSeparateChallengeMigration() [all …]
|
D | LockSettingsServiceTests.java | 118 assertEquals(VerifyCredentialResponse.RESPONSE_OK, mService.verifyCredential( in testManagedProfileUnifiedChallenge() 172 assertEquals(VerifyCredentialResponse.RESPONSE_OK, mService.verifyCredential( in testManagedProfileSeparateChallenge() 178 assertEquals(VerifyCredentialResponse.RESPONSE_OK, mService.verifyCredential( in testManagedProfileSeparateChallenge() 189 assertEquals(VerifyCredentialResponse.RESPONSE_OK, mService.verifyCredential( in testManagedProfileSeparateChallenge() 215 assertEquals(GateKeeperResponse.RESPONSE_OK, response.getResponseCode()); in assertVerifyCredentials()
|
/frameworks/base/core/java/android/service/gatekeeper/ |
D | GateKeeperResponse.java | 31 public static final int RESPONSE_OK = 0; field in GateKeeperResponse 58 GateKeeperResponse response = new GateKeeperResponse(RESPONSE_OK); in createOkResponse() 77 } else if (responseCode == RESPONSE_OK) { 104 } else if (mResponseCode == RESPONSE_OK) { in writeToParcel()
|
/frameworks/base/media/java/android/mtp/ |
D | MtpDatabase.java | 845 return MtpConstants.RESPONSE_OK; in renameFile() 871 return MtpConstants.RESPONSE_OK; in getDeviceProperty() 882 return MtpConstants.RESPONSE_OK; in getDeviceProperty() 886 return MtpConstants.RESPONSE_OK; in getDeviceProperty() 902 return (e.commit() ? MtpConstants.RESPONSE_OK in setDeviceProperty() 956 return MtpConstants.RESPONSE_OK; in getObjectFilePath() 970 return MtpConstants.RESPONSE_OK; in getObjectFilePath() 1052 return MtpConstants.RESPONSE_OK; in deleteFile() 1105 return MtpConstants.RESPONSE_OK; in setObjectReferences()
|
D | MtpConstants.java | 74 public static final int RESPONSE_OK = 0x2001; field in MtpConstants
|
D | MtpPropertyGroup.java | 344 MtpConstants.RESPONSE_OK); in getPropertyList()
|
/frameworks/base/services/core/java/com/android/server/locksettings/ |
D | SyntheticPasswordManager.java | 439 if (response.getResponseCode() != GateKeeperResponse.RESPONSE_OK) { in newSyntheticPasswordAndSid() 460 if (response.getResponseCode() != GateKeeperResponse.RESPONSE_OK) { in newSidForUser() 609 if (response.getResponseCode() != GateKeeperResponse.RESPONSE_OK) { in createPasswordBasedSyntheticPassword() 806 if (result.gkResponse.getResponseCode() != VerifyCredentialResponse.RESPONSE_OK) { in unwrapPasswordBasedSyntheticPassword() 816 if (responseCode == GateKeeperResponse.RESPONSE_OK) { in unwrapPasswordBasedSyntheticPassword() 821 if (reenrollResponse.getResponseCode() == GateKeeperResponse.RESPONSE_OK) { in unwrapPasswordBasedSyntheticPassword() 873 if (response.getResponseCode() != VerifyCredentialResponse.RESPONSE_OK || in unwrapTokenBasedSyntheticPassword() 960 if (responseCode == GateKeeperResponse.RESPONSE_OK) { in verifyChallenge() 965 if (response.getResponseCode() == GateKeeperResponse.RESPONSE_OK) { in verifyChallenge()
|
D | LockSettingsService.java | 1422 if (vcr.getResponseCode() != VerifyCredentialResponse.RESPONSE_OK) { in setUserKeyProtection() 1585 if (response.getResponseCode() == VerifyCredentialResponse.RESPONSE_OK) { in doVerifyCredential() 1612 if (parentResponse.getResponseCode() != VerifyCredentialResponse.RESPONSE_OK) { in verifyTiedProfileChallenge() 1695 if (response.getResponseCode() == VerifyCredentialResponse.RESPONSE_OK) { in verifyCredential() 1810 .getResponseCode() == GateKeeperResponse.RESPONSE_OK) { in checkVoldPassword() 1821 .getResponseCode() == GateKeeperResponse.RESPONSE_OK) { in checkVoldPassword() 2114 if (response.getResponseCode() == VerifyCredentialResponse.RESPONSE_OK) { in spBasedDoVerifyCredential() 2119 if (response.getResponseCode() != VerifyCredentialResponse.RESPONSE_OK) { in spBasedDoVerifyCredential() 2128 if (response.getResponseCode() == VerifyCredentialResponse.RESPONSE_OK) { in spBasedDoVerifyCredential() 2370 if (result.gkResponse.getResponseCode() != VerifyCredentialResponse.RESPONSE_OK) { in setLockCredentialWithTokenInternal()
|