Home | History | Annotate | Download | only in keyguard

Lines Matching refs:authenticated

428         public void keyguardDone(boolean authenticated) {
429 KeyguardViewMediator.this.keyguardDone(authenticated, true);
462 // authenticated
463 KeyguardViewMediator.this.keyguardDone(true /* authenticated */, true /* wakeUp */);
1047 public void keyguardDone(boolean authenticated, boolean wakeup) {
1048 if (DEBUG) Log.d(TAG, "keyguardDone(" + authenticated + ")");
1053 Message msg = mHandler.obtainMessage(KEYGUARD_DONE, authenticated ? 1 : 0, wakeup ? 1 : 0);
1121 private void handleKeyguardDone(boolean authenticated, boolean wakeup) {
1124 if (authenticated) {
1131 mExitSecureCallback.onKeyguardExitResult(authenticated);
1133 Slog.w(TAG, "Failed to call onKeyguardExitResult(" + authenticated + ")", e);
1138 if (authenticated) {