Searched defs:authenticated (Results 1 - 5 of 5) sorted by last modified time

/frameworks/base/services/core/java/com/android/server/policy/keyguard/
H A DKeyguardServiceDelegate.java233 public void keyguardDone(boolean authenticated, boolean wakeup) { argument
235 mKeyguardService.keyguardDone(authenticated, wakeup);
H A DKeyguardServiceWrapper.java60 public void keyguardDone(boolean authenticated, boolean wakeup) { argument
62 mService.keyguardDone(authenticated, wakeup);
/frameworks/base/packages/SystemUI/src/com/android/systemui/keyguard/
H A DKeyguardViewMediator.java528 KeyguardViewMediator.this.keyguardDone(true /* authenticated */);
573 // authenticated
574 KeyguardViewMediator.this.keyguardDone(true /* authenticated */);
1402 public void keyguardDone(boolean authenticated) { argument
1404 if (DEBUG) Log.d(TAG, "keyguardDone(" + authenticated +")");
1407 Message msg = mHandler.obtainMessage(KEYGUARD_DONE, authenticated ? 1 : 0);
1507 private void handleKeyguardDone(boolean authenticated) { argument
1518 if (authenticated) {
1529 mExitSecureCallback.onKeyguardExitResult(authenticated);
1531 Slog.w(TAG, "Failed to call onKeyguardExitResult(" + authenticated
[all...]
/frameworks/base/packages/Keyguard/src/com/android/keyguard/
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
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...]

Completed in 143 milliseconds