Searched refs:deadline (Results 1 - 7 of 7) sorted by relevance

/frameworks/base/policy/src/com/android/internal/policy/impl/keyguard/
H A DKeyguardAbsKeyInputView.java85 long deadline = mLockPatternUtils.getLockoutAttemptDeadline();
86 if (deadline != 0) {
87 handleAttemptLockout(deadline);
161 long deadline = mLockPatternUtils.setLockoutAttemptDeadline();
162 handleAttemptLockout(deadline);
169 // Prevent user from using the PIN/Password entry until scheduled deadline.
H A DKeyguardPatternView.java195 long deadline = mLockPatternUtils.getLockoutAttemptDeadline();
196 if (deadline != 0) {
197 handleAttemptLockout(deadline);
280 long deadline = mLockPatternUtils.setLockoutAttemptDeadline();
281 handleAttemptLockout(deadline);
/frameworks/base/policy/src/com/android/internal/policy/impl/keyguard_obsolete/
H A DPasswordUnlockScreen.java281 long deadline = mLockPatternUtils.getLockoutAttemptDeadline();
282 if (deadline != 0) {
283 handleAttemptLockout(deadline);
306 long deadline = mLockPatternUtils.setLockoutAttemptDeadline();
307 handleAttemptLockout(deadline);
318 // Prevent user from using the PIN/Password entry until scheduled deadline.
H A DPatternUnlockScreen.java284 long deadline = mLockPatternUtils.getLockoutAttemptDeadline();
285 if (deadline != 0) {
286 handleAttemptLockout(deadline);
363 long deadline = mLockPatternUtils.setLockoutAttemptDeadline();
364 handleAttemptLockout(deadline);
/frameworks/base/core/java/com/android/internal/widget/
H A DLockPatternUtils.java968 * Set and store the lockout deadline, meaning the user can't attempt his/her unlock
969 * pattern until the deadline has passed.
970 * @return the chosen deadline.
973 final long deadline = SystemClock.elapsedRealtime() + FAILED_ATTEMPT_TIMEOUT_MS;
974 setLong(LOCKOUT_ATTEMPT_DEADLINE, deadline);
975 return deadline;
984 final long deadline = getLong(LOCKOUT_ATTEMPT_DEADLINE, 0L);
986 if (deadline < now || deadline > (now + FAILED_ATTEMPT_TIMEOUT_MS)) {
989 return deadline;
[all...]
/frameworks/base/voip/jni/rtp/
H A DAudioGroup.cpp722 int deadline = tick + 10; local
729 if (deadline - stream->mTick > 0) {
730 deadline = stream->mTick;
743 deadline -= tick;
744 if (deadline < 1) {
745 deadline = 1;
749 count = epoll_wait(mGroup->mEventQueue, events, count, deadline);
/frameworks/base/core/tests/coretests/src/android/content/pm/
H A DPackageManagerTests.java930 final long deadline = SystemClock.uptimeMillis() + timeoutMillis;
944 waitTime = deadline - SystemClock.uptimeMillis();

Completed in 2276 milliseconds