Home
last modified time | relevance | path

Searched refs:gkResponse (Results 1 – 4 of 4) sorted by relevance

/aosp12/system/core/gatekeeperd/
H A Dgatekeeperd.cpp204 [&gkResponse](const GatekeeperResponse& rsp) { in enroll()
211 *gkResponse = GKResponse::error(); in enroll()
219 if (gkResponse->response_code() == GKResponseCode::OK && !gkResponse->should_reenroll()) { in enroll()
222 << gkResponse->payload().size(); in enroll()
228 gkResponse->payload().data()); in enroll()
246 gkResponse); in verify()
252 GKResponse* gkResponse) override { in verifyChallenge() argument
283 [&gkResponse](const GatekeeperResponse& rsp) { in verifyChallenge()
285 *gkResponse = GKResponse::ok( in verifyChallenge()
291 *gkResponse = GKResponse::error(); in verifyChallenge()
[all …]
/aosp12/frameworks/base/services/core/java/com/android/server/locksettings/
H A DSyntheticPasswordManager.java149 @Nullable public VerifyCredentialResponse gkResponse; field in SyntheticPasswordManager.AuthenticationResult
992 result.gkResponse = VerifyCredentialResponse.ERROR; in unwrapPasswordBasedSyntheticPassword()
1005 result.gkResponse = VerifyCredentialResponse.ERROR; in unwrapPasswordBasedSyntheticPassword()
1014 result.gkResponse.getGatekeeperHAT()); in unwrapPasswordBasedSyntheticPassword()
1023 result.gkResponse = VerifyCredentialResponse.ERROR; in unwrapPasswordBasedSyntheticPassword()
1028 result.gkResponse = VerifyCredentialResponse.OK; in unwrapPasswordBasedSyntheticPassword()
1055 result.gkResponse = VerifyCredentialResponse.ERROR; in unwrapPasswordBasedSyntheticPassword()
1098 result.gkResponse = VerifyCredentialResponse.ERROR; in unwrapTokenBasedSyntheticPassword()
1116 if (result.gkResponse == null) { in unwrapTokenBasedSyntheticPassword()
1119 result.gkResponse = VerifyCredentialResponse.OK; in unwrapTokenBasedSyntheticPassword()
[all …]
H A DLockSettingsService.java1747 GateKeeperResponse gkResponse; in setLockCredentialInternal() local
1749 gkResponse = getGateKeeperService().verifyChallenge(userId, 0, willStore.hash, in setLockCredentialInternal()
1754 setUserKeyProtection(userId, credential, convertResponse(gkResponse)); in setLockCredentialInternal()
2921 response = authResult.gkResponse; in spBasedDoVerifyCredential()
3184 VerifyCredentialResponse response = authResult.gkResponse;
3354 if (result.gkResponse.getResponseCode() != VerifyCredentialResponse.RESPONSE_OK) {
/aosp12/frameworks/base/packages/SystemUI/src/com/android/systemui/biometrics/
H A DAuthCredentialView.java296 final VerifyCredentialResponse gkResponse = mLockPatternUtils in onCredentialVerified() local
299 mCallback.onCredentialMatched(gkResponse.getGatekeeperHAT()); in onCredentialVerified()