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

/frameworks/base/core/java/android/app/trust/
H A DTrustManager.java50 * @param successful if true, the unlock attempt was successful.
54 public void reportUnlockAttempt(boolean successful, int userId) { argument
56 mService.reportUnlockAttempt(successful, userId);
/frameworks/base/core/java/android/service/trust/
H A DTrustAgentService.java169 * @param successful true if the user successfully completed the challenge.
171 public void onUnlockAttempt(boolean successful) { argument
310 public void onUnlockAttempt(boolean successful) { argument
311 mHandler.obtainMessage(MSG_UNLOCK_ATTEMPT, successful ? 1 : 0, 0).sendToTarget();
/frameworks/base/packages/Keyguard/test/SampleTrustAgent/src/com/android/trustagent/test/
H A DSampleTrustAgent.java104 public void onUnlockAttempt(boolean successful) { argument
106 logAndShowToast("onUnlockAttempt(successful=" + successful + ")");
/frameworks/base/services/core/java/com/android/server/trust/
H A DTrustAgentWrapper.java300 public void onUnlockAttempt(boolean successful) { argument
302 if (mTrustAgentService != null) mTrustAgentService.onUnlockAttempt(successful);
H A DTrustManagerService.java538 private void dispatchUnlockAttempt(boolean successful, int userId) { argument
542 info.agent.onUnlockAttempt(successful);
546 if (successful) {

Completed in 169 milliseconds