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

/frameworks/base/packages/Keyguard/src/com/android/keyguard/
H A DViewMediatorCallback.java31 * @param authenticated Whether the user securely got past the keyguard.
36 void keyguardDone(boolean authenticated); argument
H A DKeyguardSecurityContainer.java49 public boolean dismiss(boolean authenticated); argument
317 * @param authenticated true if the user entered the correct authentication
318 * @param authenticated
321 boolean showNextSecurityScreenOrFinish(boolean authenticated) { argument
322 if (DEBUG) Log.d(TAG, "showNextSecurityScreenOrFinish(" + authenticated + ")");
335 } else if (authenticated) {
442 public void dismiss(boolean authenticated) {
443 mSecurityCallback.dismiss(authenticated);
527 public void dismiss(boolean authenticated) { argument
528 mCallback.dismiss(authenticated);
[all...]
H A DKeyguardViewBase.java159 public boolean dismiss(boolean authenticated) { argument
160 return mSecurityContainer.showNextSecurityScreenOrFinish(authenticated);
H A DKeyguardHostView.java363 public boolean dismiss(boolean authenticated) { argument
364 boolean finished = super.dismiss(authenticated);
/frameworks/base/core/java/com/android/internal/policy/
H A DIKeyguardService.aidl32 oneway void keyguardDone(boolean authenticated, boolean wakeup);
/frameworks/base/packages/SystemUI/src/com/android/systemui/keyguard/
H A DKeyguardService.java93 public void keyguardDone(boolean authenticated, boolean wakeup) {
95 mKeyguardViewMediator.keyguardDone(authenticated, wakeup);
H A DKeyguardViewMediator.java428 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) { argument
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) { argument
1124 if (authenticated) {
1131 mExitSecureCallback.onKeyguardExitResult(authenticated);
[all...]
/frameworks/base/policy/src/com/android/internal/policy/impl/keyguard/
H A DKeyguardServiceWrapper.java96 public void keyguardDone(boolean authenticated, boolean wakeup) { argument
98 mService.keyguardDone(authenticated, wakeup);
H A DKeyguardServiceDelegate.java174 public void keyguardDone(boolean authenticated, boolean wakeup) { argument
176 mKeyguardService.keyguardDone(authenticated, wakeup);
/frameworks/base/services/core/java/com/android/server/trust/
H A DTrustManagerService.java513 public void reportUnlockAttempt(boolean authenticated, int userId) throws RemoteException {
515 mHandler.obtainMessage(MSG_DISPATCH_UNLOCK_ATTEMPT, authenticated ? 1 : 0, userId)

Completed in 302 milliseconds