Home
last modified time | relevance | path

Searched refs:RESPONSE_OK (Results 1 – 15 of 15) sorted by relevance

/frameworks/base/core/java/com/android/internal/widget/
DVerifyCredentialResponse.java31 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()
DLockPatternUtils.java390 if (response.getResponseCode() == VerifyCredentialResponse.RESPONSE_OK) { in verifyCredential()
422 if (response.getResponseCode() == VerifyCredentialResponse.RESPONSE_OK) { in checkCredential()
456 if (response.getResponseCode() == VerifyCredentialResponse.RESPONSE_OK) { in verifyTiedProfileChallenge()
/frameworks/base/services/tests/servicestests/src/com/android/server/locksettings/
DLockscreenFrpTest.java54 assertEquals(VerifyCredentialResponse.RESPONSE_OK, in testFrpCredential_setPin()
63 assertEquals(VerifyCredentialResponse.RESPONSE_OK, in testFrpCredential_setPattern()
72 assertEquals(VerifyCredentialResponse.RESPONSE_OK, in testFrpCredential_setPassword()
82 assertEquals(VerifyCredentialResponse.RESPONSE_OK, in testFrpCredential_changeCredential()
115 assertEquals(VerifyCredentialResponse.RESPONSE_OK, in testFrpCredential_legacyPinTypePersistentData()
131 assertEquals(VerifyCredentialResponse.RESPONSE_OK, in testFrpCredential_legacyPasswordTypePersistentData()
DSyntheticPasswordTests.java121 assertEquals(VerifyCredentialResponse.RESPONSE_OK, mService.verifyCredential( in testSyntheticPasswordChangeCredential()
133 assertEquals(VerifyCredentialResponse.RESPONSE_OK, mService.verifyCredential( in testSyntheticPasswordVerifyCredential()
155 assertEquals(VerifyCredentialResponse.RESPONSE_OK, mService.verifyCredential( in testSyntheticPasswordClearCredential()
168 assertEquals(VerifyCredentialResponse.RESPONSE_OK, mService.verifyCredential( in testSyntheticPasswordChangeCredentialKeepsAuthSecret()
185 assertEquals(VerifyCredentialResponse.RESPONSE_OK, mService.verifyCredential( in testSyntheticPasswordVerifyPassesPrimaryUserAuthSecret()
196 assertEquals(VerifyCredentialResponse.RESPONSE_OK, mService.verifyCredential( in testSecondaryUserDoesNotPassAuthSecret()
261 assertEquals(VerifyCredentialResponse.RESPONSE_OK, mService.verifyCredential( in testTokenBasedResetPassword()
286 assertEquals(VerifyCredentialResponse.RESPONSE_OK, mService.verifyCredential( in testTokenBasedClearPassword()
311 assertEquals(VerifyCredentialResponse.RESPONSE_OK, mService.verifyCredential( in testTokenBasedResetPasswordAfterCredentialChanges()
359 assertEquals(VerifyCredentialResponse.RESPONSE_OK, mService.verifyCredential( in testEscrowTokenActivatedLaterWithUserPasswordNeedsMigration()
[all …]
DLockSettingsServiceTests.java131 assertEquals(VerifyCredentialResponse.RESPONSE_OK, mService.verifyCredential( in testManagedProfileUnifiedChallenge()
188 assertEquals(VerifyCredentialResponse.RESPONSE_OK, mService.verifyCredential( in testManagedProfileSeparateChallenge()
194 assertEquals(VerifyCredentialResponse.RESPONSE_OK, mService.verifyCredential( in testManagedProfileSeparateChallenge()
205 assertEquals(VerifyCredentialResponse.RESPONSE_OK, mService.verifyCredential( in testManagedProfileSeparateChallenge()
491 assertEquals(GateKeeperResponse.RESPONSE_OK, response.getResponseCode()); in assertVerifyCredentials()
/frameworks/base/core/java/android/service/gatekeeper/
DGateKeeperResponse.java31 public static final int RESPONSE_OK = 0; field in GateKeeperResponse
60 GateKeeperResponse response = new GateKeeperResponse(RESPONSE_OK); in createOkResponse()
79 } else if (responseCode == RESPONSE_OK) {
106 } else if (mResponseCode == RESPONSE_OK) { in writeToParcel()
/frameworks/base/media/java/android/mtp/
DMtpDatabase.java524 MtpPropertyList ret = new MtpPropertyList(MtpConstants.RESPONSE_OK); in getObjectPropertyList()
550 if (err != MtpConstants.RESPONSE_OK) { in getObjectPropertyList()
609 return MtpConstants.RESPONSE_OK; in renameFile()
621 return allowed ? MtpConstants.RESPONSE_OK : MtpConstants.RESPONSE_GENERAL_ERROR; in beginMoveObject()
730 return MtpConstants.RESPONSE_OK; in getDeviceProperty()
741 return MtpConstants.RESPONSE_OK; in getDeviceProperty()
744 return MtpConstants.RESPONSE_OK; in getDeviceProperty()
748 return MtpConstants.RESPONSE_OK; in getDeviceProperty()
762 return (e.commit() ? MtpConstants.RESPONSE_OK in setDeviceProperty()
803 return MtpConstants.RESPONSE_OK; in getObjectFilePath()
[all …]
DMtpConstants.java74 public static final int RESPONSE_OK = 0x2001; field in MtpConstants
DMtpPropertyGroup.java284 return MtpConstants.RESPONSE_OK; in getPropertyList()
/frameworks/base/core/java/android/service/controls/actions/
DControlAction.java115 RESPONSE_OK,
130 public static final @ResponseResult int RESPONSE_OK = 1; field in ControlAction
/frameworks/base/services/core/java/com/android/server/locksettings/
DSyntheticPasswordManager.java575 if (response.getResponseCode() != GateKeeperResponse.RESPONSE_OK) { in newSyntheticPasswordAndSid()
600 if (response.getResponseCode() != GateKeeperResponse.RESPONSE_OK) { in newSidForUser()
777 if (response.getResponseCode() != GateKeeperResponse.RESPONSE_OK) { in createPasswordBasedSyntheticPassword()
1006 if (result.gkResponse.getResponseCode() != VerifyCredentialResponse.RESPONSE_OK) { in unwrapPasswordBasedSyntheticPassword()
1023 if (responseCode == GateKeeperResponse.RESPONSE_OK) { in unwrapPasswordBasedSyntheticPassword()
1035 if (reenrollResponse.getResponseCode() == GateKeeperResponse.RESPONSE_OK) { in unwrapPasswordBasedSyntheticPassword()
1098 if (response.getResponseCode() != VerifyCredentialResponse.RESPONSE_OK || in unwrapTokenBasedSyntheticPassword()
1192 if (responseCode == GateKeeperResponse.RESPONSE_OK) { in verifyChallenge()
1202 if (response.getResponseCode() == GateKeeperResponse.RESPONSE_OK) { in verifyChallenge()
DLockSettingsService.java1834 if (vcr.getResponseCode() != VerifyCredentialResponse.RESPONSE_OK) { in setUserKeyProtection()
2023 if (response.getResponseCode() == VerifyCredentialResponse.RESPONSE_OK) { in doVerifyCredential()
2044 if (response.getResponseCode() == VerifyCredentialResponse.RESPONSE_OK) { in doVerifyCredential()
2066 if (parentResponse.getResponseCode() != VerifyCredentialResponse.RESPONSE_OK) { in verifyTiedProfileChallenge()
2120 if (response.getResponseCode() == VerifyCredentialResponse.RESPONSE_OK) { in verifyCredential()
2271 .getResponseCode() == GateKeeperResponse.RESPONSE_OK) { in checkVoldPassword()
2723 if (response.getResponseCode() == VerifyCredentialResponse.RESPONSE_OK) { in spBasedDoVerifyCredential()
2728 if (response.getResponseCode() != VerifyCredentialResponse.RESPONSE_OK) { in spBasedDoVerifyCredential()
2736 if (response.getResponseCode() == VerifyCredentialResponse.RESPONSE_OK) { in spBasedDoVerifyCredential()
3135 if (result.gkResponse.getResponseCode() != VerifyCredentialResponse.RESPONSE_OK) {
[all …]
/frameworks/base/core/tests/coretests/src/android/service/controls/
DControlProviderServiceTest.java242 ControlAction.RESPONSE_OK); in testOnAction()
315 cb.accept(ControlAction.RESPONSE_OK);
/frameworks/base/packages/EasterEgg/src/com/android/egg/neko/
DNekoControlsService.kt227 consumer.accept(ControlAction.RESPONSE_OK) in performControlAction()
/frameworks/base/api/
Dcurrent.txt43545 field public static final int RESPONSE_OK = 1; // 0x1