HomeSort by relevance Sort by last modified time
    Searched defs:mMaxScreenLockTime (Results 1 - 2 of 2) sorted by null

  /packages/apps/Email/emailcommon/src/com/android/emailcommon/provider/
Policy.java 65 public int mMaxScreenLockTime;
267 mMaxScreenLockTime = 0;
292 if (mMaxScreenLockTime != otherPolicy.mMaxScreenLockTime) return false;
319 code += (mMaxScreenLockTime << 3);
340 mMaxScreenLockTime = cursor.getInt(CONTENT_MAX_SCREEN_LOCK_TIME_COLUMN);
367 values.put(PolicyColumns.MAX_SCREEN_LOCK_TIME, mMaxScreenLockTime);
438 appendPolicy(sb, "idle", mMaxScreenLockTime);
497 dest.writeInt(mMaxScreenLockTime);
525 mMaxScreenLockTime = in.readInt()
    [all...]
  /packages/apps/Email/tests/src/com/android/email/
SecurityPolicyTests.java 116 policy.mMaxScreenLockTime = maxScreenLockTime;
175 assertEquals(16, p4out.mMaxScreenLockTime);
201 assertEquals(6, p5out.mMaxScreenLockTime);
539 if (ps.mMaxScreenLockTime != policy.mMaxScreenLockTime) return false;
571 private final int mMaxScreenLockTime;
589 mMaxScreenLockTime = (int) ((flags & LegacyPolicySet.SCREEN_LOCK_TIME_MASK)

Completed in 424 milliseconds