Searched defs:authenticated (Results 1 - 5 of 5) sorted by relevance

/frameworks/base/services/core/java/com/android/server/policy/keyguard/
H A DKeyguardServiceWrapper.java57 public void keyguardDone(boolean authenticated, boolean wakeup) { argument
59 mService.keyguardDone(authenticated, wakeup);
H A DKeyguardServiceDelegate.java208 public void keyguardDone(boolean authenticated, boolean wakeup) { argument
210 mKeyguardService.keyguardDone(authenticated, wakeup);
/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
310 * @param authenticated true if the user entered the correct authentication
313 boolean showNextSecurityScreenOrFinish(boolean authenticated) { argument
314 if (DEBUG) Log.d(TAG, "showNextSecurityScreenOrFinish(" + authenticated + ")");
327 } else if (authenticated) {
418 public void dismiss(boolean authenticated) {
419 mSecurityCallback.dismiss(authenticated);
498 public void dismiss(boolean authenticated) { argument
499 mCallback.dismiss(authenticated);
[all...]
/frameworks/base/packages/SystemUI/src/com/android/systemui/keyguard/
H A DKeyguardViewMediator.java470 KeyguardViewMediator.this.keyguardDone(true /* authenticated */);
507 // authenticated
508 KeyguardViewMediator.this.keyguardDone(true /* authenticated */);
1210 public void keyguardDone(boolean authenticated) { argument
1211 if (DEBUG) Log.d(TAG, "keyguardDone(" + authenticated +")");
1213 Message msg = mHandler.obtainMessage(KEYGUARD_DONE, authenticated ? 1 : 0);
1293 private void handleKeyguardDone(boolean authenticated) { argument
1299 if (authenticated) {
1310 mExitSecureCallback.onKeyguardExitResult(authenticated);
1312 Slog.w(TAG, "Failed to call onKeyguardExitResult(" + authenticated
[all...]

Completed in 126 milliseconds