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

/frameworks/base/core/java/com/android/internal/policy/
H A DIKeyguardService.aidl36 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
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...]
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.java81 public void keyguardDone(boolean authenticated, boolean wakeup) {
84 mKeyguardViewMediator.keyguardDone(authenticated);
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...]
/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/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/fingerprint/
H A DFingerprintService.java693 boolean authenticated = fpId != 0;
697 authenticated);
698 if (!authenticated) {
/frameworks/base/services/core/java/com/android/server/trust/
H A DTrustManagerService.java620 public void reportUnlockAttempt(boolean authenticated, int userId) throws RemoteException {
622 mHandler.obtainMessage(MSG_DISPATCH_UNLOCK_ATTEMPT, authenticated ? 1 : 0, userId)

Completed in 140 milliseconds