Searched refs:authenticated (Results 1 - 10 of 10) sorted by relevance

/frameworks/base/services/core/java/com/android/server/fingerprint/
H A DAuthenticationClient.java51 boolean authenticated = fingerId != 0;
57 authenticated);
58 if (!authenticated) {
77 if (!authenticated) {
/frameworks/base/core/java/com/android/internal/policy/
H A DIKeyguardService.aidl37 void keyguardDone(boolean authenticated, boolean wakeup);
/frameworks/base/packages/Keyguard/src/com/android/keyguard/
H A DKeyguardSecurityContainer.java54 public boolean dismiss(boolean authenticated); argument
59 * @param strongAuth wheher the user has authenticated with strong authentication like
309 * @param authenticated true if the user entered the correct authentication
312 boolean showNextSecurityScreenOrFinish(boolean authenticated) { argument
313 if (DEBUG) Log.d(TAG, "showNextSecurityScreenOrFinish(" + authenticated + ")");
326 } else if (authenticated) {
417 public void dismiss(boolean authenticated) {
418 mSecurityCallback.dismiss(authenticated);
496 public void dismiss(boolean authenticated) { argument
497 mCallback.dismiss(authenticated);
[all...]
H A DKeyguardHostView.java91 dismiss(false /* authenticated */);
210 public boolean dismiss(boolean authenticated) { argument
211 return mSecurityContainer.showNextSecurityScreenOrFinish(authenticated);
218 * @param strongAuth whether the user has authenticated with strong authentication like
/frameworks/base/packages/SystemUI/src/com/android/systemui/keyguard/
H A DKeyguardService.java84 public void keyguardDone(boolean authenticated, boolean wakeup) {
88 mKeyguardViewMediator.keyguardDone(authenticated);
H A DKeyguardViewMediator.java556 KeyguardViewMediator.this.keyguardDone(true /* authenticated */);
601 // authenticated
602 KeyguardViewMediator.this.keyguardDone(true /* authenticated */);
1436 public void keyguardDone(boolean authenticated) { argument
1438 if (DEBUG) Log.d(TAG, "keyguardDone(" + authenticated +")");
1441 Message msg = mHandler.obtainMessage(KEYGUARD_DONE, authenticated ? 1 : 0);
1541 private void handleKeyguardDone(boolean authenticated) { argument
1552 if (authenticated) {
1563 mExitSecureCallback.onKeyguardExitResult(authenticated);
1565 Slog.w(TAG, "Failed to call onKeyguardExitResult(" + authenticated
[all...]
/frameworks/base/services/core/jni/
H A Dcom_android_server_fingerprint_FingerprintService.cpp101 arg1 = msg.data.authenticated.finger.fid;
102 arg2 = msg.data.authenticated.finger.gid;
104 notifyKeystore(reinterpret_cast<uint8_t *>(&msg.data.authenticated.hat),
105 sizeof(msg.data.authenticated.hat));
/frameworks/base/services/core/java/com/android/server/policy/keyguard/
H A DKeyguardServiceWrapper.java60 public void keyguardDone(boolean authenticated, boolean wakeup) { argument
62 mService.keyguardDone(authenticated, wakeup);
H A DKeyguardServiceDelegate.java233 public void keyguardDone(boolean authenticated, boolean wakeup) { argument
235 mKeyguardService.keyguardDone(authenticated, wakeup);
/frameworks/base/services/core/java/com/android/server/trust/
H A DTrustManagerService.java670 public void reportUnlockAttempt(boolean authenticated, int userId) throws RemoteException {
672 mHandler.obtainMessage(MSG_DISPATCH_UNLOCK_ATTEMPT, authenticated ? 1 : 0, userId)

Completed in 2098 milliseconds